summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-05-16 17:50:14 +0000
committerMark Spencer <markster@digium.com>2004-05-16 17:50:14 +0000
commit4fc75f6559287dbe440dde2d593f88fb7aa206f7 (patch)
tree66f6f7e850d57b1c287e2b080ef966a6a1258a71 /channel.c
parente37c73ef97d8005e5b5ec13fadad85436b1a6a59 (diff)
Ignore progress frames in request/dial (bug #1657)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2983 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index e870cfb65..b9097eee3 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 {