10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040aee2 commit 9c5ea83Copy full SHA for 9c5ea83
src/interfaces/libpq/fe-connect.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.399 2010/07/18 11:37:26 petere Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.400 2010/07/18 15:51:00 momjian Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -1816,8 +1816,12 @@ PQconnectPoll(PGconn *conn)
1816
if (pass == NULL)
1817
{
1818
appendPQExpBuffer(&conn->errorMessage,
1819
+# if defined(SO_PEERCRED)
1820
libpq_gettext("local user with ID %d does not exist\n"),
1821
(int) peercred.uid);
1822
+#else
1823
+ libpq_gettext("matching local user does not exist\n"));
1824
+#endif
1825
goto error_return;
1826
}
1827
0 commit comments