1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

libpq: Message style improvements

This commit is contained in:
Peter Eisentraut
2017-06-13 11:53:26 -04:00
parent ee252f074b
commit 2e3fc7a7d3
2 changed files with 3 additions and 2 deletions

View File

@ -1218,7 +1218,8 @@ PQencryptPasswordConn(PGconn *conn, const char *passwd, const char *user,
else
{
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("unknown password encryption algorithm\n"));
libpq_gettext("unrecognized password encryption algorithm \"%s\"\n"),
algorithm);
return NULL;
}