1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-28 18:48:04 +03:00

libpq: Error message improvement

This commit is contained in:
Peter Eisentraut
2023-05-16 08:59:34 +02:00
parent 489b5409e4
commit c91f356083
4 changed files with 23 additions and 23 deletions

View File

@@ -909,7 +909,7 @@ check_expected_areq(AuthRequest areq, PGconn *conn)
if (!reason)
reason = auth_method_description(areq);
libpq_append_conn_error(conn, "auth method \"%s\" requirement failed: %s",
libpq_append_conn_error(conn, "authentication method requirement \"%s\" failed: %s",
conn->require_auth, reason);
return result;
}