summaryrefslogtreecommitdiff
path: root/sapi/apache
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-03-07 05:15:28 +0000
committerfoobar <sniper@php.net>2003-03-07 05:15:28 +0000
commit3c9155e0cba948820f809564f1c2b99e4792e256 (patch)
tree4c2137a4c3eff036380eabc3a23c7bddc2049acc /sapi/apache
parente32eaf29deba326dc7ccd9576a19eed75dcfd3fc (diff)
downloadphp-git-3c9155e0cba948820f809564f1c2b99e4792e256.tar.gz
Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.
# Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
Diffstat (limited to 'sapi/apache')
-rw-r--r--sapi/apache/php_apache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c
index fd3405dfa3..112640b617 100644
--- a/sapi/apache/php_apache.c
+++ b/sapi/apache/php_apache.c
@@ -66,10 +66,10 @@ function_entry apache_functions[] = {
PHP_INI_BEGIN()
- STD_PHP_INI_ENTRY("xbithack", "0", PHP_INI_ALL, OnUpdateInt, xbithack, php_apache_info_struct, php_apache_info)
- STD_PHP_INI_ENTRY("engine", "1", PHP_INI_ALL, OnUpdateInt, engine, php_apache_info_struct, php_apache_info)
- STD_PHP_INI_ENTRY("last_modified", "0", PHP_INI_ALL, OnUpdateInt, last_modified, php_apache_info_struct, php_apache_info)
- STD_PHP_INI_ENTRY("child_terminate", "0", PHP_INI_ALL, OnUpdateInt, terminate_child, php_apache_info_struct, php_apache_info)
+ STD_PHP_INI_ENTRY("xbithack", "0", PHP_INI_ALL, OnUpdateLong, xbithack, php_apache_info_struct, php_apache_info)
+ STD_PHP_INI_ENTRY("engine", "1", PHP_INI_ALL, OnUpdateLong, engine, php_apache_info_struct, php_apache_info)
+ STD_PHP_INI_ENTRY("last_modified", "0", PHP_INI_ALL, OnUpdateLong, last_modified, php_apache_info_struct, php_apache_info)
+ STD_PHP_INI_ENTRY("child_terminate", "0", PHP_INI_ALL, OnUpdateLong, terminate_child, php_apache_info_struct, php_apache_info)
PHP_INI_END()