diff options
author | foobar <sniper@php.net> | 2001-01-03 11:39:09 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-01-03 11:39:09 +0000 |
commit | c5da386dbd1b152701ce6873e3505e463c24fd0a (patch) | |
tree | 094a3d234cc1fe2cc2689b7322848c5f73fffd31 /sapi/apache/mod_php4.c | |
parent | ea46f79a97f2e92306573fcb3a17df90756cb5c9 (diff) | |
download | php-git-c5da386dbd1b152701ce6873e3505e463c24fd0a.tar.gz |
Fix compile.
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r-- | sapi/apache/mod_php4.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index efdfee968e..224eeb5b99 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -249,12 +249,12 @@ static void sapi_apache_register_server_variables(zval *track_vars_array ELS_DC static int php_apache_startup(sapi_module_struct *sapi_module) { - if(php_module_startup(sapi_module, NULL) == FAILURE - || zend_startup_module(&apache_module_entry) == FAILURE) { - return FAILURE; - } else { - return SUCCESS; - } + if(php_module_startup(sapi_module) == FAILURE + || zend_startup_module(&apache_module_entry) == FAILURE) { + return FAILURE; + } else { + return SUCCESS; + } } |