summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-03-31 17:01:01 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-03-31 17:01:01 +0000
commit39a43c994edfe11243f4565690fba52e854a24d9 (patch)
tree0ec8c12fb9d2330ff8ce04f4195ed8fc6f53bef0 /sapi
parentd00b6c7c99c105157e33335de84e9bb444c077c4 (diff)
downloadphp-git-39a43c994edfe11243f4565690fba52e854a24d9.tar.gz
Fixed bug #27802 (default number of children to 8 when PHP_FCGI_CHILDREN is
not defined).
Diffstat (limited to 'sapi')
-rw-r--r--sapi/cgi/cgi_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index 3fb2250381..760101d969 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -98,7 +98,7 @@ static void (*php_php_import_environment_variables)(zval *array_ptr TSRMLS_DC);
/**
* 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