From fb1d7f4519665f0a6a15a8fd6acc4bb5f86f5697 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 31 Mar 2022 11:24:26 -0400 Subject: [PATCH] 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 --- src/interfaces/libpq/fe-secure-openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/libpq/fe-secure-openssl.c b/src/interfaces/libpq/fe-secure-openssl.c index 7348a62e46..cbc90c64b8 100644 --- a/src/interfaces/libpq/fe-secure-openssl.c +++ b/src/interfaces/libpq/fe-secure-openssl.c @@ -1192,7 +1192,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; }