diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-03-31 17:01:01 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-03-31 17:01:01 +0000 |
commit | 39a43c994edfe11243f4565690fba52e854a24d9 (patch) | |
tree | 0ec8c12fb9d2330ff8ce04f4195ed8fc6f53bef0 /sapi | |
parent | d00b6c7c99c105157e33335de84e9bb444c077c4 (diff) | |
download | php-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.c | 2 |
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 |