[Freeswitch-svn] [commit] r4139 - freeswitch/trunk/src

Freeswitch SVN mikej at freeswitch.org
Tue Feb 6 14:20:39 EST 2007


Author: mikej
Date: Tue Feb  6 14:20:39 2007
New Revision: 4139

Modified:
   freeswitch/trunk/src/switch.c

Log:
vg default on windows, not otherwise.

Modified: freeswitch/trunk/src/switch.c
==============================================================================
--- freeswitch/trunk/src/switch.c	(original)
+++ freeswitch/trunk/src/switch.c	Tue Feb  6 14:20:39 2007
@@ -198,9 +198,9 @@
 	const char *err = NULL;		// error value for return from freeswitch initialization
 #ifndef WIN32
 	int nf = 0;					// TRUE if we are running in nofork mode
-	int vg = 1;					// Allways TRUE on windows to not do apr_terminate
+	int vg = 0;					// Allways TRUE on windows to not do apr_terminate
 #else
-	int vg = 0;					// TRUE if we are running in vg mode
+	int vg = 1;					// TRUE if we are running in vg mode
 #endif
 	int nc = 0;					// TRUE if we are running in noconsole mode
 	FILE *f;					// file handle to the pid file



More information about the Freeswitch-svn mailing list