iliaa           Wed Mar 31 12:01:01 2004 EDT

  Modified files:              
    /php-src/sapi/cgi   cgi_main.c 
  Log:
  Fixed bug #27802 (default number of children to 8 when PHP_FCGI_CHILDREN is
  not defined).
  
  
http://cvs.php.net/diff.php/php-src/sapi/cgi/cgi_main.c?r1=1.251&r2=1.252&ty=u
Index: php-src/sapi/cgi/cgi_main.c
diff -u php-src/sapi/cgi/cgi_main.c:1.251 php-src/sapi/cgi/cgi_main.c:1.252
--- php-src/sapi/cgi/cgi_main.c:1.251   Fri Mar 12 09:05:59 2004
+++ php-src/sapi/cgi/cgi_main.c Wed Mar 31 12:01:01 2004
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: cgi_main.c,v 1.251 2004/03/12 14:05:59 iliaa Exp $ */
+/* $Id: cgi_main.c,v 1.252 2004/03/31 17:01:01 iliaa Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -98,7 +98,7 @@
 /**
  * Number of child processes that will get created to service requests
  */
-static int children = 0;
+static int children = 8;
 
 /**
  * Set to non-zero if we are the parent process

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to