diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-11-13 21:09:09 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-11-13 21:09:09 +0100 |
commit | 45d5ecab49f6c0df607d3ca2ce1995229f416d1a (patch) | |
tree | 84dbef943c230f0982cb6fcba638c26d0704e46e /src/interfaces/libpq/fe-protocol3.c | |
parent | 062e133f6d579f50e6e90642defca725d47add1d (diff) | |
download | postgresql-45d5ecab49f6c0df607d3ca2ce1995229f416d1a.tar.gz postgresql-45d5ecab49f6c0df607d3ca2ce1995229f416d1a.zip |
libpq: Add missing newlines to error messages
Diffstat (limited to 'src/interfaces/libpq/fe-protocol3.c')
-rw-r--r-- | src/interfaces/libpq/fe-protocol3.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/libpq/fe-protocol3.c b/src/interfaces/libpq/fe-protocol3.c index f001137b769..f5664e0f831 100644 --- a/src/interfaces/libpq/fe-protocol3.c +++ b/src/interfaces/libpq/fe-protocol3.c @@ -202,7 +202,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } @@ -227,7 +227,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } else @@ -256,7 +256,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } @@ -274,7 +274,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } @@ -355,7 +355,7 @@ pqParseInput3(PGconn *conn) if (!conn->result) { appendPQExpBufferStr(&conn->errorMessage, - libpq_gettext("out of memory")); + libpq_gettext("out of memory\n")); pqSaveErrorResult(conn); } } |