From: foobar Date: Wed, 3 Jan 2001 11:39:09 +0000 (+0000) Subject: Fix compile. X-Git-Tag: php-4.0.5RC1~755 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5da386dbd1b152701ce6873e3505e463c24fd0a;p=php Fix compile. --- 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; + } }