jani Fri Sep 7 09:59:50 2007 UTC
Modified files: (Branch: PHP_5_2)
/ZendEngine2 zend_ini.c
Log:
- Missed this from previous commit to zend_ini.h
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_ini.c?r1=1.39.2.2.2.14&r2=1.39.2.2.2.15&diff_format=u
Index: ZendEngine2/zend_ini.c
diff -u ZendEngine2/zend_ini.c:1.39.2.2.2.14
ZendEngine2/zend_ini.c:1.39.2.2.2.15
--- ZendEngine2/zend_ini.c:1.39.2.2.2.14 Fri Sep 7 09:37:37 2007
+++ ZendEngine2/zend_ini.c Fri Sep 7 09:59:50 2007
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_ini.c,v 1.39.2.2.2.14 2007/09/07 09:37:37 jani Exp $ */
+/* $Id: zend_ini.c,v 1.39.2.2.2.15 2007/09/07 09:59:50 jani Exp $ */
#include "zend.h"
#include "zend_qsort.h"
@@ -234,6 +234,11 @@
/* }}} */
#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;
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|