Fix typo in error message
authorPeter Eisentraut <[email protected]>
Wed, 12 Jun 2024 02:48:39 +0000 (04:48 +0200)
committerPeter Eisentraut <[email protected]>
Wed, 12 Jun 2024 02:48:39 +0000 (04:48 +0200)
src/interfaces/libpq/fe-connect.c

index 548ad118fb1ae1a303e05a35041e1dd746fb4bff..df9964324672f4ceea3cd753d0e9285d09a32a82 100644 (file)
@@ -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;