Commit 402279af authored by Tom Lane's avatar Tom Lane

Add missing newline in one libpq error message.

Oversight in commit a59c79564.  Back-patch, as that was.
Noted by Peter Eisentraut.

Discussion: https://postgr.es/m/7f85ef6d-250b-f5ec-9867-89f0b16d019f@enterprisedb.com
parent c5479178
...@@ -1234,7 +1234,7 @@ initialize_SSL(PGconn *conn) ...@@ -1234,7 +1234,7 @@ initialize_SSL(PGconn *conn)
if (!S_ISREG(buf.st_mode)) if (!S_ISREG(buf.st_mode))
{ {
appendPQExpBuffer(&conn->errorMessage, appendPQExpBuffer(&conn->errorMessage,
libpq_gettext("private key file \"%s\" is not a regular file"), libpq_gettext("private key file \"%s\" is not a regular file\n"),
fnbuf); fnbuf);
return -1; return -1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment