summaryrefslogtreecommitdiff
path: root/ext/zlib/zlib.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-09-03 22:54:02 +0000
committerfoobar <sniper@php.net>2002-09-03 22:54:02 +0000
commit639221694fa5104512e8a905fb09036af90cffbf (patch)
tree9b377c74844a16d674e591a96eea78fb6741d617 /ext/zlib/zlib.c
parent86c4c1730eb4bdd4097cd806270e7b75ffcdebeb (diff)
downloadphp-git-639221694fa5104512e8a905fb09036af90cffbf.tar.gz
Use zend_ini_string instead of the 'alias'.
Diffstat (limited to 'ext/zlib/zlib.c')
-rw-r--r--ext/zlib/zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 2c52b9a039..b6bf9e90ff 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -135,7 +135,7 @@ static PHP_INI_MH(OnUpdate_zlib_output_compression)
{
char *ini_value;
- ini_value = php_ini_string("output_handler", sizeof("output_handler"), 0);
+ ini_value = zend_ini_string("output_handler", sizeof("output_handler"), 0);
if (ini_value != NULL && strlen(ini_value) != 0 &&
new_value != NULL && strlen(new_value) != 0 ) {
php_error_docref("ref.outcontrol" TSRMLS_CC, E_CORE_ERROR, "Cannot use both zlib.output_compression and output_handler together!!");