Commit fe5de484 authored by Tom Lane's avatar Tom Lane

A few parentheses shy of a load here ...

parent a0cc9f3c
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.105 2003/07/22 19:00:10 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.106 2003/07/22 21:19:22 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1391,7 +1391,7 @@ ident_unix(int sock, char *ident_user) ...@@ -1391,7 +1391,7 @@ ident_unix(int sock, char *ident_user)
{ {
ereport(LOG, ereport(LOG,
(errmsg("local user with uid %d is not known to getpwuid", (errmsg("local user with uid %d is not known to getpwuid",
(int) peercred.uid); (int) peercred.uid)));
return false; return false;
} }
...@@ -1461,7 +1461,7 @@ ident_unix(int sock, char *ident_user) ...@@ -1461,7 +1461,7 @@ ident_unix(int sock, char *ident_user)
{ {
ereport(LOG, ereport(LOG,
(errmsg("local user with uid %d is not known to getpwuid", (errmsg("local user with uid %d is not known to getpwuid",
(int) cred->cruid); (int) cred->cruid)));
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment