Skip to content

Commit 66294e1

Browse files
committed
Fix one overlooked ocurrence of "None" in EXEC_BACKEND block.
1 parent 6812abb commit 66294e1

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.473 2005/11/03 17:11:36 alvherre Exp $
40+
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.474 2005/11/03 20:02:50 alvherre Exp $
4141
*
4242
* NOTES
4343
*
@@ -3186,7 +3186,7 @@ SubPostmasterMain(int argc, char *argv[])
31863186

31873187
/* In EXEC_BACKEND case we will not have inherited these settings */
31883188
IsPostmasterEnvironment = true;
3189-
whereToSendOutput = None;
3189+
whereToSendOutput = DestNone;
31903190

31913191
/* Setup essential subsystems (to ensure elog() behaves sanely) */
31923192
MemoryContextInit();

0 commit comments

Comments
 (0)