summaryrefslogtreecommitdiff
path: root/ext/zlib
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 /ext/zlib
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 'ext/zlib')
-rw-r--r--ext/zlib/zlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 27fb3aaf43..e378bf6156 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -157,7 +157,7 @@ static PHP_INI_MH(OnUpdate_zlib_output_compression)
return FAILURE;
}
- OnUpdateInt(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
+ OnUpdateLong(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
return SUCCESS;
}
@@ -166,7 +166,7 @@ static PHP_INI_MH(OnUpdate_zlib_output_compression)
/* {{{ OnUpdate_zlib_output_compression_level */
static PHP_INI_MH(OnUpdate_zlib_output_compression_level)
{
- OnUpdateInt(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
+ OnUpdateLong(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
return SUCCESS;
}