Fix typo in error message

This commit is contained in:
Peter Eisentraut 2024-06-12 04:48:39 +02:00
parent 18404ea601
commit f376996bb7

View File

@ -4312,7 +4312,7 @@ init_allowed_encryption_methods(PGconn *conn)
if (conn->gssencmode[0] == 'r') if (conn->gssencmode[0] == 'r')
{ {
libpq_append_conn_error(conn, 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->allowed_enc_methods = 0;
conn->current_enc_method = ENC_ERROR; conn->current_enc_method = ENC_ERROR;
return false; return false;