diff options
author | Peter Eisentraut | 2024-06-12 02:48:39 +0000 |
---|---|---|
committer | Peter Eisentraut | 2024-06-12 02:48:39 +0000 |
commit | f376996bb7fe621ac53279a81d475b214e492018 (patch) | |
tree | 9d5635e97692b609b9049d3d04658d16739f7d43 | |
parent | 18404ea60141a2e2eaf58a5ebbd2b99f7a0cd442 (diff) |
Fix typo in error message
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |