Commit 66294e13 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix one overlooked ocurrence of "None" in EXEC_BACKEND block.

parent 6812abb6
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.473 2005/11/03 17:11:36 alvherre Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.474 2005/11/03 20:02:50 alvherre Exp $
* *
* NOTES * NOTES
* *
...@@ -3186,7 +3186,7 @@ SubPostmasterMain(int argc, char *argv[]) ...@@ -3186,7 +3186,7 @@ SubPostmasterMain(int argc, char *argv[])
/* In EXEC_BACKEND case we will not have inherited these settings */ /* In EXEC_BACKEND case we will not have inherited these settings */
IsPostmasterEnvironment = true; IsPostmasterEnvironment = true;
whereToSendOutput = None; whereToSendOutput = DestNone;
/* Setup essential subsystems (to ensure elog() behaves sanely) */ /* Setup essential subsystems (to ensure elog() behaves sanely) */
MemoryContextInit(); MemoryContextInit();
......
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