summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-secure-openssl.c
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
commita6bd1f0eef3dae3918315734cabd88ed07122dc3 (patch)
tree40248ecb981a143233d326a50bd8c17802589b50 /src/interfaces/libpq/fe-secure-openssl.c
parent3b6d2b460b5af1e62f45c751997a23e5c674ad03 (diff)
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
Diffstat (limited to 'src/interfaces/libpq/fe-secure-openssl.c')
-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 e752ee1d255..988a32e5347 100644
--- a/src/interfaces/libpq/fe-secure-openssl.c
+++ b/src/interfaces/libpq/fe-secure-openssl.c
@@ -1246,7 +1246,7 @@ initialize_SSL(PGconn *conn)
if (!S_ISREG(buf.st_mode))
{
printfPQExpBuffer(&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;
}