Fix one overlooked ocurrence of "None" in EXEC_BACKEND block.
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 3 Nov 2005 20:02:50 +0000 (20:02 +0000)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 3 Nov 2005 20:02:50 +0000 (20:02 +0000)
src/backend/postmaster/postmaster.c

index 4f19284ba795a410afe4926301045209a03c504e..593d127dfaedee6f1f9e3dc29bdea57608df907d 100644 (file)
@@ -37,7 +37,7 @@
  *
  *
  * 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
  *
@@ -3186,7 +3186,7 @@ SubPostmasterMain(int argc, char *argv[])
 
        /* In EXEC_BACKEND case we will not have inherited these settings */
        IsPostmasterEnvironment = true;
-       whereToSendOutput = None;
+       whereToSendOutput = DestNone;
 
        /* Setup essential subsystems (to ensure elog() behaves sanely) */
        MemoryContextInit();