Skip to content

Commit a6bd1f0

Browse files
committed
Add missing newline in one libpq error message.
Oversight in commit a59c795. Back-patch, as that was. Noted by Peter Eisentraut. Discussion: https://postgr.es/m/7f85ef6d-250b-f5ec-9867-89f0b16d019f@enterprisedb.com
1 parent 3b6d2b4 commit a6bd1f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/libpq/fe-secure-openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ initialize_SSL(PGconn *conn)
12461246
if (!S_ISREG(buf.st_mode))
12471247
{
12481248
printfPQExpBuffer(&conn->errorMessage,
1249-
libpq_gettext("private key file \"%s\" is not a regular file"),
1249+
libpq_gettext("private key file \"%s\" is not a regular file\n"),
12501250
fnbuf);
12511251
return -1;
12521252
}

0 commit comments

Comments
 (0)