Convert ast_verbose to ast_verb.

Reported by: snuffy
Patch by: snuffy
(Closes issue #11547)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@92913 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2007-12-14 14:48:38 +00:00
parent c8759aff25
commit d5b454bf8d
13 changed files with 48 additions and 84 deletions

View File

@@ -1427,7 +1427,7 @@ static struct skinny_line *find_line_by_name(const char *dest)
/* This is a match, since we're checking for line on every device. */
} else if (!strcasecmp(d->name, device)) {
if (skinnydebug)
ast_verbose(VERBOSE_PREFIX_2 "Found device: %s\n", d->name);
ast_verb(2, "Found device: %s\n", d->name);
} else
continue;
@@ -1436,7 +1436,7 @@ static struct skinny_line *find_line_by_name(const char *dest)
/* Search for the right line */
if (!strcasecmp(l->name, line)) {
if (tmpl) {
ast_verbose(VERBOSE_PREFIX_2 "Ambiguous line name: %s\n", line);
ast_verb(2, "Ambiguous line name: %s\n", line);
ast_mutex_unlock(&devicelock);
return NULL;
} else