From 903018ef368754bace78ab341cb2eb5e6628bcf1 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sun, 7 Jan 2001 18:39:11 +0000 Subject: - Remove backward dependency from PHP -> Zend - Rename get_ini_entry() as get_configuration_directive() for clarity (it doesn't use the INI subsystem, but the module-supplied function for retrieving configuration directives) --- Zend/zend_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_alloc.c') diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 1741ce211c..aeca8546fc 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -502,7 +502,7 @@ ZEND_API void shutdown_memory_manager(int silent, int clean_cache) /* we're shutting down completely, don't even touch the INI subsystem */ break; } - if (zend_get_ini_entry("display_memory_cache_stats", sizeof("display_memory_cache_stats"), &display_memory_cache_stats)==FAILURE) { + if (zend_get_configuration_directive("display_memory_cache_stats", sizeof("display_memory_cache_stats"), &display_memory_cache_stats)==FAILURE) { break; } if (!atoi(display_memory_cache_stats.value.str.val)) { -- cgit v1.2.1