mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Added \n to error message.
This commit is contained in:
@ -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)
|
|||||||
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;
|
||||||
|
Reference in New Issue
Block a user