diff options
author | Peter Eisentraut | 2023-05-16 06:59:34 +0000 |
---|---|---|
committer | Peter Eisentraut | 2023-05-16 06:59:34 +0000 |
commit | c91f3560835f76bd8c9f614bebaa8c634b98b451 (patch) | |
tree | e56e052b9ecf7dcdab3c10daec48ec8599e52e92 /src/interfaces/libpq/fe-auth.c | |
parent | 489b5409e4a0fa36c951561bae8ae4394e7d623f (diff) |
libpq: Error message improvement
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index fe2634230a3..0dc31988b47 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -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; } |