libpq: Error message improvement

Move a variable name out of the translatable message, to make it
identical to others.
pull/137/head
Alvaro Herrera 2 years ago
parent c44b59fad4
commit 27debd05dc
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
  1. 4
      src/interfaces/libpq/fe-connect.c

@ -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…
Cancel
Save