From: Felipe Pena Date: Sat, 11 Jun 2011 23:46:35 +0000 (+0000) Subject: - Fix missing change from r303357 (related to bug #48831) X-Git-Tag: php-5.3.7RC1~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a504c6f6b9960df5d5841a8a7fa26dbd5744895;p=php - Fix missing change from r303357 (related to bug #48831) --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index b5b95b48a6..de862f7a1f 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -1361,7 +1361,7 @@ int main(int argc, char *argv[]) { zend_printf("Configuration File (php.ini) Path: %s\n", PHP_CONFIG_FILE_PATH); zend_printf("Loaded Configuration File: %s\n", php_ini_opened_path ? php_ini_opened_path : "(none)"); - zend_printf("Scan for additional .ini files in: %s\n", *PHP_CONFIG_FILE_SCAN_DIR ? PHP_CONFIG_FILE_SCAN_DIR : "(none)"); + zend_printf("Scan for additional .ini files in: %s\n", php_ini_scanned_path ? php_ini_scanned_path : "(none)"); zend_printf("Additional .ini files parsed: %s\n", php_ini_scanned_files ? php_ini_scanned_files : "(none)"); break; }