summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2006-05-31 16:04:49 +0000
committerKevin P. Fleming <kpfleming@digium.com>2006-05-31 16:04:49 +0000
commite69388b3ba42a8cc7af51ef3606074db1daa71b8 (patch)
tree284a157a4b0add0220ed32a93e1d5b4f07cd036d /channel.c
parent871f08ec0752511e4faedb7d88ca5802fd205018 (diff)
a few more control frame types that don't need to generate useless notices in the log
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@31044 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 597b18076..59789e93f 100644
--- a/channel.c
+++ b/channel.c
@@ -2547,7 +2547,12 @@ struct ast_channel *__ast_request_and_dial(const char *type, int format, void *d
timeout = 0; /* trick to force exit from the while() */
break;
- case AST_CONTROL_PROGRESS: /* Ignore */
+ /* Ignore these */
+ case AST_CONTROL_PROGRESS:
+ case AST_CONTROL_PROCEEDING:
+ case AST_CONTROL_HOLD:
+ case AST_CONTROL_UNHOLD:
+ case AST_CONTROL_VIDUPDATE:
case -1: /* Ignore -- just stopping indications */
break;