dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
anthm 2005-01-27 21:10:44 +00:00
parent 0a42b07e05
commit 7051d3e4b1
1 changed files with 1 additions and 1 deletions

View File

@ -459,7 +459,7 @@ static struct ast_config *config_text_file_load(const char *database, const char
for (i=0; i<globbuf.gl_pathc; i++) {
strncpy(fn, globbuf.gl_pathv[i], sizeof(fn)-1);
#endif
if ((option_verbose > 1) && !option_debug) {
if ((option_verbose > 2) && !option_debug) {
ast_verbose( VERBOSE_PREFIX_2 "Parsing '%s': ", fn);
fflush(stdout);
}