1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-15 03:41:20 +03:00

libpq: Some message style normalization

This commit is contained in:
Peter Eisentraut
2024-06-13 07:10:35 +02:00
parent 99b99285e5
commit 6ac5600a36
3 changed files with 6 additions and 6 deletions

View File

@@ -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