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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user