summaryrefslogtreecommitdiff
path: root/Zend/zend_ini.c
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-09-07 09:59:50 +0000
committerJani Taskinen <jani@php.net>2007-09-07 09:59:50 +0000
commit822400d78f23693cabfea1e00616646bbd63360a (patch)
tree50abb8633c220076d0b5c836ddcf0306fcdcc05b /Zend/zend_ini.c
parent2a528a158a900aa8d6e63a181e8af49647c9159c (diff)
downloadphp-git-822400d78f23693cabfea1e00616646bbd63360a.tar.gz
- Missed this from previous commit to zend_ini.h
Diffstat (limited to 'Zend/zend_ini.c')
-rw-r--r--Zend/zend_ini.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c
index 3237776026..4de0f2f06e 100644
--- a/Zend/zend_ini.c
+++ b/Zend/zend_ini.c
@@ -234,6 +234,11 @@ ZEND_API void zend_ini_refresh_caches(int stage TSRMLS_DC) /* {{{ */
/* }}} */
#endif
+ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage) /* {{{ */
+{
+ return zend_alter_ini_entry_ex(name, name_length, new_value, new_value_length, modify_type, stage, 0);
+}
+
ZEND_API int zend_alter_ini_entry_ex(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage, int force_change) /* {{{ */
{
zend_ini_entry *ini_entry;