From: Peter Eisentraut Date: Wed, 12 Jun 2024 02:48:39 +0000 (+0200) Subject: Fix typo in error message X-Git-Tag: REL_17_BETA2~66 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=f376996bb7fe621ac53279a81d475b214e492018;p=postgresql.git Fix typo in error message --- diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index 548ad118fb1..df996432467 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -4312,7 +4312,7 @@ init_allowed_encryption_methods(PGconn *conn) if (conn->gssencmode[0] == 'r') { libpq_append_conn_error(conn, - "GSSAPI encryption required but it is not supported over a local socket)"); + "GSSAPI encryption required but it is not supported over a local socket"); conn->allowed_enc_methods = 0; conn->current_enc_method = ENC_ERROR; return false;