dect
/
asterisk
Archived
13
0
Fork 0

Only print PRI messages when in verbose mode (bug #1732)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3099 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-05-27 22:38:13 +00:00
parent c13b0ea0b9
commit f4d667257b
1 changed files with 2 additions and 1 deletions

View File

@ -6166,7 +6166,8 @@ static void *do_idle_thread(void *vchan)
static void zt_pri_message(char *s)
{
ast_verbose(s);
if (option_verbose)
ast_verbose(s);
}
static void zt_pri_error(char *s)