Skip to content

Commit 9640cc7

Browse files
committed
Fix for cancel key restarting postmaster, from Claudio
1 parent 5c0d0a2 commit 9640cc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*
3838
*
3939
* IDENTIFICATION
40-
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.355 2004/01/07 18:56:27 neilc Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.356 2004/01/09 23:11:39 momjian Exp $
4141
*
4242
* NOTES
4343
*
@@ -2450,7 +2450,7 @@ BackendInit(Port *port)
24502450
{
24512451
ereport(LOG,
24522452
(errmsg("connection startup failed")));
2453-
proc_exit(status);
2453+
proc_exit(0);
24542454
}
24552455

24562456
/*

0 commit comments

Comments
 (0)