Browse Source

made the apache ini holders to be zend_bool

since they're documented to be so and we spare 16 byte
pull/959/head
Anatol Belski 12 years ago
parent
commit
178363cbff
  1. 6
      sapi/apache2handler/php_apache.h
  2. 6
      sapi/apache2handler/php_functions.c

6
sapi/apache2handler/php_apache.h

@ -70,9 +70,9 @@ void php_ap2_register_hook(apr_pool_t *p);
#define APR_ARRAY_FOREACH_CLOSE() }}
typedef struct {
long engine;
long xbithack;
long last_modified;
zend_bool engine;
zend_bool xbithack;
zend_bool last_modified;
} php_apache2_info_struct;
extern zend_module_entry apache2_module_entry;

6
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)

Loading…
Cancel
Save