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/phttpd | |
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/phttpd')
-rw-r--r-- | sapi/phttpd/phttpd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sapi/phttpd/phttpd.c b/sapi/phttpd/phttpd.c index 7e7367d49d..415c691cc7 100644 --- a/sapi/phttpd/phttpd.c +++ b/sapi/phttpd/phttpd.c @@ -43,13 +43,9 @@ static int ph_globals_id; static int php_phttpd_startup(sapi_module_struct *sapi_module) { -/* - if(php_module_startup(sapi_module) == FAILURE - || zend_startup_module(&php_aolserver_module) == FAILURE) { -*/ fprintf(stderr,"***php_phttpd_startup\n"); - if (php_module_startup(sapi_module)) { + if (php_module_startup(sapi_module, NULL, 0)) { return FAILURE; } else { return SUCCESS; |