aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2022-03-31 11:24:26 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2022-03-31 11:24:26 -0400
commit402279afe48d26c6657bec55256bd91d924e4086 (patch)
tree00d57bc2315b015db4dd4ea01f56a967c60cf114
parentc5479178441ea68341afa2d2bf41738dabbefc71 (diff)
downloadpostgresql-402279afe48d26c6657bec55256bd91d924e4086.tar.gz
postgresql-402279afe48d26c6657bec55256bd91d924e4086.zip
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
-rw-r--r--src/interfaces/libpq/fe-secure-openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-secure-openssl.c b/src/interfaces/libpq/fe-secure-openssl.c
index daaf062b2ab..48f384f7ee2 100644
--- a/src/interfaces/libpq/fe-secure-openssl.c
+++ b/src/interfaces/libpq/fe-secure-openssl.c
@@ -1234,7 +1234,7 @@ initialize_SSL(PGconn *conn)
if (!S_ISREG(buf.st_mode))
{
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);
return -1;
}