Commit 2fb605ec authored by Peter Eisentraut's avatar Peter Eisentraut

Fix peculiar, untranslatable message concatenation attempt

parent b2640888
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.390 2010/03/13 14:55:57 momjian Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.391 2010/03/17 20:58:38 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -4463,10 +4463,9 @@ dot_pg_pass_warning(PGconn *conn) ...@@ -4463,10 +4463,9 @@ dot_pg_pass_warning(PGconn *conn)
if (!getPgPassFilename(pgpassfile)) if (!getPgPassFilename(pgpassfile))
return; return;
appendPQExpBufferStr(&conn->errorMessage, appendPQExpBuffer(&conn->errorMessage,
libpq_gettext("password retrieved from ")); libpq_gettext("password retrieved from file \"%s\"\n"),
appendPQExpBufferStr(&conn->errorMessage, pgpassfile); pgpassfile);
appendPQExpBufferChar(&conn->errorMessage, '\n');
} }
} }
......
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