dect
/
asterisk
Archived
13
0
Fork 0

Fix "not found" case (bug #3404)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5008 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2005-02-11 16:09:01 +00:00
parent d83fd65a73
commit 6fa83d8fbd
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ static struct ast_config *config_text_file_load(const char *database, const char
} else { /* can't open file */
if (option_debug)
ast_log(LOG_DEBUG, "No file to parse: %s\n", fn);
else if (option_verbose > 2)
else if (option_verbose > 1)
ast_verbose( "Not found (%s)\n", strerror(errno));
}
if (comment) {