From: Mark Spencer Date: Sun, 16 May 2004 17:50:14 +0000 (+0000) Subject: Ignore progress frames in request/dial (bug #1657) X-Git-Tag: 1.0.0-rc1~464 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fc75f6559287dbe440dde2d593f88fb7aa206f7;p=thirdparty%2Fasterisk.git Ignore progress frames in request/dial (bug #1657) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2983 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channel.c b/channel.c index e870cfb653..b9097eee35 100755 --- a/channel.c +++ b/channel.c @@ -1685,6 +1685,8 @@ struct ast_channel *__ast_request_and_dial(char *type, int format, void *data, i state = f->subclass; ast_frfree(f); break; + } else if (f->subclass == AST_CONTROL_PROGRESS) { + /* Ignore */ } else if (f->subclass == -1) { /* Ignore -- just stopping indications */ } else {