From: Daniel Beulshausen Date: Mon, 14 May 2001 10:30:30 +0000 (+0000) Subject: fix typo X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~435 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f60b4b8a5ae4f7538dba7f79443b235f13c279b;p=php fix typo --- diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 9a055d76a3..8feca1bd0d 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -99,7 +99,7 @@ static void php_apache_globals_ctor(php_apache_info_struct *apache_globals) static PHP_MINIT_FUNCTION(apache) { #ifdef ZTS - php_apache_info_id = ts_allocate_id(sizeof(php_apache_info_struct), ts_allocate_ctor, NULL); + php_apache_info_id = ts_allocate_id(sizeof(php_apache_info_struct), php_apache_globals_ctor, NULL); #else php_apache_globals_ctor(&php_apache_info); #endif