diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-03-31 11:24:26 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-03-31 11:24:26 -0400 |
commit | fcaf7d725d7cad6bd0a038334ce87366dd73566d (patch) | |
tree | 96e3d5397dd431b898f9e6a46c2fac87742846ae /src/interfaces/libpq/fe-secure-openssl.c | |
parent | c3a587994a0190b0f23e87b124cc3a8e9d57d3e6 (diff) | |
download | postgresql-fcaf7d725d7cad6bd0a038334ce87366dd73566d.tar.gz postgresql-fcaf7d725d7cad6bd0a038334ce87366dd73566d.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
Diffstat (limited to 'src/interfaces/libpq/fe-secure-openssl.c')
-rw-r--r-- | src/interfaces/libpq/fe-secure-openssl.c | 2 |
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 f5f9c5e7e7b..6926135b2ce 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; } |