From 7051d3e4b141bb0f52000d1203b567285fb1ff56 Mon Sep 17 00:00:00 2001 From: anthm Date: Thu, 27 Jan 2005 21:10:44 +0000 Subject: [PATCH] Fixing "parsing" bug in config.c (AGAIN!) if you had a verbose of 2 you got the following: Parsing '/etc/asterisk/cdr_odbc.conf': == Parsing '/etc/asterisk/confcall.conf': *CLI> == Parsing '/etc/asterisk/sip_notify.conf': the carraige return only prints on verbose of 3 or more so i am again moving them to be the same. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4899 f38db490-d61c-443f-a65b-d21fe96a405b --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index ebb2e1185..5738c507d 100755 --- a/config.c +++ b/config.c @@ -459,7 +459,7 @@ static struct ast_config *config_text_file_load(const char *database, const char for (i=0; i 1) && !option_debug) { + if ((option_verbose > 2) && !option_debug) { ast_verbose( VERBOSE_PREFIX_2 "Parsing '%s': ", fn); fflush(stdout); }