diff options
author | Zeev Suraski <zeev@php.net> | 2002-09-18 21:57:42 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2002-09-18 21:57:42 +0000 |
commit | 76312b4508b43ed2cebd97b749e9e90181e55073 (patch) | |
tree | de244c23b518eff0488eb3a965b21e2522ee0454 /sapi/isapi | |
parent | 70f17979fb7ac0c7379a48bc86d26a009cfb56ed (diff) | |
download | php-git-76312b4508b43ed2cebd97b749e9e90181e55073.tar.gz |
another startup initialization fix - only ISAPI and CGI SAPI's tested,
minor compile buglets might occur in other SAPIs, but should be trivial
to fix...
Diffstat (limited to 'sapi/isapi')
-rw-r--r-- | sapi/isapi/php4isapi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 129c345f69..9f2d3f296d 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -296,8 +296,7 @@ static int sapi_isapi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC) static int php_isapi_startup(sapi_module_struct *sapi_module) { - if (php_module_startup(sapi_module)==FAILURE - || zend_startup_module(&php_isapi_module)==FAILURE) { + if (php_module_startup(sapi_module, &php_isapi_module, 1)==FAILURE) { return FAILURE; } else { bTerminateThreadsOnError = (zend_bool) INI_INT("isapi.terminate_threads_on_error"); |