From: Kevin P. Fleming Date: Wed, 31 May 2006 16:04:49 +0000 (+0000) Subject: a few more control frame types that don't need to generate useless notices in the log X-Git-Tag: 1.4.0-beta1~1144 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e69388b3ba42a8cc7af51ef3606074db1daa71b8;p=thirdparty%2Fasterisk.git 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 --- diff --git a/channel.c b/channel.c index 597b180764..59789e93f3 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;