From 4fc75f6559287dbe440dde2d593f88fb7aa206f7 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 16 May 2004 17:50:14 +0000 Subject: [PATCH] Ignore progress frames in request/dial (bug #1657) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2983 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channel.c | 2 ++ 1 file changed, 2 insertions(+) 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 {