summaryrefslogtreecommitdiff
path: root/apps/app_waitforring.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_waitforring.c')
-rw-r--r--apps/app_waitforring.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/app_waitforring.c b/apps/app_waitforring.c
index dd1c98047..1378c3e5f 100644
--- a/apps/app_waitforring.c
+++ b/apps/app_waitforring.c
@@ -79,8 +79,7 @@ static int waitforring_exec(struct ast_channel *chan, void *data)
break;
}
if ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_RING)) {
- if (option_verbose > 2)
- ast_verbose(VERBOSE_PREFIX_3 "Got a ring but still waiting for timeout\n");
+ ast_verb(3, "Got a ring but still waiting for timeout\n");
}
ast_frfree(f);
}
@@ -101,8 +100,7 @@ static int waitforring_exec(struct ast_channel *chan, void *data)
break;
}
if ((f->frametype == AST_FRAME_CONTROL) && (f->subclass == AST_CONTROL_RING)) {
- if (option_verbose > 2)
- ast_verbose(VERBOSE_PREFIX_3 "Got a ring after the timeout\n");
+ ast_verb(3, "Got a ring after the timeout\n");
ast_frfree(f);
break;
}