aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-connect.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-06-13 07:10:35 +0200
committerPeter Eisentraut <peter@eisentraut.org>2024-06-13 07:10:35 +0200
commit6ac5600a36c1950e1470ccb16038e6b8ca4e6eba (patch)
treeec922dede927779d85697d1c3c5ab01420a6d8a5 /src/interfaces/libpq/fe-connect.c
parent99b99285e5438ee8b0c065db58e87e6577158d22 (diff)
downloadpostgresql-6ac5600a36c1950e1470ccb16038e6b8ca4e6eba.tar.gz
postgresql-6ac5600a36c1950e1470ccb16038e6b8ca4e6eba.zip
libpq: Some message style normalization
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r--src/interfaces/libpq/fe-connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c
index 995621b6260..90f259fc706 100644
--- a/src/interfaces/libpq/fe-connect.c
+++ b/src/interfaces/libpq/fe-connect.c
@@ -1602,8 +1602,8 @@ pqConnectOptions2(PGconn *conn)
if (conn->sslnegotiation[0] != 'p')
{
conn->status = CONNECTION_BAD;
- libpq_append_conn_error(conn, "sslnegotiation value \"%s\" invalid when SSL support is not compiled in",
- conn->sslnegotiation);
+ libpq_append_conn_error(conn, "%s value \"%s\" invalid when SSL support is not compiled in",
+ "sslnegotiation", conn->sslnegotiation);
return false;
}
#endif