summaryrefslogtreecommitdiff
path: root/sapi/aolserver/aolserver.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-10-29 11:38:26 +0000
committerZeev Suraski <zeev@php.net>2000-10-29 11:38:26 +0000
commit1fd09132c2539400fa198ba3172aed9ab0a9b951 (patch)
treeadbb8641e79e9db6e354ac4869daf51061fa450f /sapi/aolserver/aolserver.c
parent825457ae64db20d0a35a272465e9a1dc1cf64e61 (diff)
downloadphp-git-1fd09132c2539400fa198ba3172aed9ab0a9b951.tar.gz
Initial steps to move the INI mechanism to the Zend engine
Diffstat (limited to 'sapi/aolserver/aolserver.c')
-rw-r--r--sapi/aolserver/aolserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/aolserver/aolserver.c b/sapi/aolserver/aolserver.c
index 8e18fa48f4..b7b3f9ab12 100644
--- a/sapi/aolserver/aolserver.c
+++ b/sapi/aolserver/aolserver.c
@@ -559,7 +559,7 @@ php_ns_config(php_ns_context *ctx, char global)
} while(*val == ' ');
Ns_Log(Debug, "PHP configuration option '%s=%s'", new_key, val);
- php_alter_ini_entry(new_key, strlen(new_key) + 1, val,
+ zend_alter_ini_entry(new_key, strlen(new_key) + 1, val,
strlen(val) + 1, PHP_INI_SYSTEM, PHP_INI_STAGE_RUNTIME);
efree(new_key);