mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix thinko in recent patch: 'sock' should be 'conn->sock'.
This commit is contained in:
parent
9c5ea833a0
commit
25241aee60
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.400 2010/07/18 15:51:00 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.401 2010/07/18 16:42:20 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1763,7 +1763,7 @@ keep_going: /* We will come back to here until there is
|
||||
gid_t gid;
|
||||
|
||||
errno = 0;
|
||||
if (getpeereid(sock, &uid, &gid) != 0)
|
||||
if (getpeereid(conn->sock, &uid, &gid) != 0)
|
||||
{
|
||||
appendPQExpBuffer(&conn->errorMessage,
|
||||
libpq_gettext("could not get peer credentials: %s\n"),
|
||||
|
Loading…
Reference in New Issue
Block a user