Skip to content
Snippets Groups Projects
Commit d9557276 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Added \n to error message.

parent 6c82ae2c
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.30 1997/06/01 03:18:32 momjian Exp $ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.31 1997/06/01 04:59:25 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -332,7 +332,7 @@ makePGresult(PGconn* conn, char* pname) ...@@ -332,7 +332,7 @@ makePGresult(PGconn* conn, char* pname)
backend dumps core */ backend dumps core */
sprintf(conn->errorMessage, sprintf(conn->errorMessage,
"FATAL: unrecognized data from the backend. " "FATAL: unrecognized data from the backend. "
"It probably dumped core."); "It probably dumped core.\n");
fprintf(stderr, conn->errorMessage); fprintf(stderr, conn->errorMessage);
result->resultStatus = PGRES_FATAL_ERROR; result->resultStatus = PGRES_FATAL_ERROR;
return result; return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment