Move a variable name out of the translatable message, to make it
identical to others.
&& 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