diff options
| author | Anatol Belski <ab@php.net> | 2014-12-15 13:49:46 +0100 | 
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-12-15 13:49:46 +0100 | 
| commit | 178363cbff9cc2366b75eb11fd61473da238f7c6 (patch) | |
| tree | 642809c2825e6b836530bd3fed75c0e439957b26 /sapi/apache2handler/php_functions.c | |
| parent | 44ae32ad55b9ceee9eb980edefcc62df6cff3eef (diff) | |
| download | php-git-178363cbff9cc2366b75eb11fd61473da238f7c6.tar.gz | |
made the apache ini holders to be zend_bool
since they're documented to be so and we spare 16 byte
Diffstat (limited to 'sapi/apache2handler/php_functions.c')
| -rw-r--r-- | sapi/apache2handler/php_functions.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index d038f9e9b9..76bbad6194 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -532,9 +532,9 @@ static const zend_function_entry apache_functions[] = {  };  PHP_INI_BEGIN() -	STD_PHP_INI_ENTRY("xbithack",		"0",	PHP_INI_ALL,	OnUpdateLong,	xbithack,	php_apache2_info_struct, php_apache2_info) -	STD_PHP_INI_ENTRY("engine",		"1",	PHP_INI_ALL,	OnUpdateLong,	engine, 	php_apache2_info_struct, php_apache2_info) -	STD_PHP_INI_ENTRY("last_modified",	"0",	PHP_INI_ALL,	OnUpdateLong,	last_modified,	php_apache2_info_struct, php_apache2_info) +	STD_PHP_INI_ENTRY("xbithack",		"0",	PHP_INI_ALL,	OnUpdateBool,	xbithack,	php_apache2_info_struct, php_apache2_info) +	STD_PHP_INI_ENTRY("engine",		"1",	PHP_INI_ALL,	OnUpdateBool,	engine, 	php_apache2_info_struct, php_apache2_info) +	STD_PHP_INI_ENTRY("last_modified",	"0",	PHP_INI_ALL,	OnUpdateBool,	last_modified,	php_apache2_info_struct, php_apache2_info)  PHP_INI_END()  static PHP_MINIT_FUNCTION(apache) | 
