From: Zeev Suraski Date: Wed, 3 Jan 2001 11:56:00 +0000 (+0000) Subject: Fix Apache module and remove excess elements from the SAPI structure X-Git-Tag: php-4.0.5RC1~753 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60776dbeebf2b89d6c692104102b41d1ec158e28;p=php Fix Apache module and remove excess elements from the SAPI structure --- diff --git a/main/SAPI.h b/main/SAPI.h index 4e9ada0278..89e426cd43 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -224,7 +224,7 @@ struct _sapi_post_entry { SAPI_POST_READER_FUNC(sapi_read_standard_form_data); SAPI_POST_READER_FUNC(php_default_post_reader); -#define STANDARD_SAPI_MODULE_PROPERTIES NULL, NULL +#define STANDARD_SAPI_MODULE_PROPERTIES NULL #endif /* SAPI_H */ diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 224eeb5b99..7d9fc511a7 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -347,6 +347,8 @@ static sapi_module_struct apache_sapi_module = { sapi_apache_register_server_variables, /* register server variables */ php_apache_log_message, /* Log message */ + NULL, /* php.ini path override */ + #ifdef PHP_WIN32 NULL, NULL,