summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane2022-03-31 15:24:26 +0000
committerTom Lane2022-03-31 15:24:26 +0000
commit143043191b2fa892c547f6fefc243ec54769f5e8 (patch)
tree95e5eb191b4303fee2c799b4d626d70b9ae0a833 /src
parenta5d4a3850fa879cb4c78732ce2f83e446778f885 (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')
-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 37b963a77ac..b5ac0210404 100644
--- a/src/interfaces/libpq/fe-secure-openssl.c
+++ b/src/interfaces/libpq/fe-secure-openssl.c
@@ -1126,7 +1126,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;
}