Fix thinko in recent patch: 'sock' should be 'conn->sock'.

This commit is contained in:
Tom Lane 2010-07-18 16:42:20 +00:00
parent 9c5ea833a0
commit 25241aee60
1 changed files with 2 additions and 2 deletions

View File

@ -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"),