Commit 9640cc7d authored by Bruce Momjian's avatar Bruce Momjian

Fix for cancel key restarting postmaster, from Claudio

parent 5c0d0a23
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.355 2004/01/07 18:56:27 neilc Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.356 2004/01/09 23:11:39 momjian Exp $
* *
* NOTES * NOTES
* *
...@@ -2450,7 +2450,7 @@ BackendInit(Port *port) ...@@ -2450,7 +2450,7 @@ BackendInit(Port *port)
{ {
ereport(LOG, ereport(LOG,
(errmsg("connection startup failed"))); (errmsg("connection startup failed")));
proc_exit(status); proc_exit(0);
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment