mirror of https://github.com/postgres/postgres
libpq: Error message improvement
Move a variable name out of the translatable message, to make it identical to others.
This commit is contained in:
parent
c44b59fad4
commit
27debd05dc
|
@ -1481,8 +1481,8 @@ connectOptions2(PGconn *conn)
|
|||
&& strcmp(conn->sslrootcert, "system") == 0)
|
||||
{
|
||||
conn->status = CONNECTION_BAD;
|
||||
libpq_append_conn_error(conn, "sslrootcert value \"%s\" invalid when SSL support is not compiled in",
|
||||
conn->sslrootcert);
|
||||
libpq_append_conn_error(conn, "%s value \"%s\" invalid when SSL support is not compiled in",
|
||||
"sslrootcert", conn->sslrootcert);
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue