We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44b59f commit 27debd0Copy full SHA for 27debd0
src/interfaces/libpq/fe-connect.c
@@ -1481,8 +1481,8 @@ connectOptions2(PGconn *conn)
1481
&& strcmp(conn->sslrootcert, "system") == 0)
1482
{
1483
conn->status = CONNECTION_BAD;
1484
- libpq_append_conn_error(conn, "sslrootcert value \"%s\" invalid when SSL support is not compiled in",
1485
- conn->sslrootcert);
+ libpq_append_conn_error(conn, "%s value \"%s\" invalid when SSL support is not compiled in",
+ "sslrootcert", conn->sslrootcert);
1486
return false;
1487
}
1488
#endif
0 commit comments