summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-06-14 21:18:52 +0000
committerMark Spencer <markster@digium.com>2004-06-14 21:18:52 +0000
commit5b9cab6c13a3fec583a0c08c5cede0b8af14a568 (patch)
treebc2ea3e3445369970aec632f72855da70b2f00c6 /channel.c
parentf70b57352b5b0b09066daa41da4c8add54100ecf (diff)
Separate PROCEEDING and PROGRESS
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3206 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 52a49aa45..83e39ed57 100755
--- a/channel.c
+++ b/channel.c
@@ -1365,6 +1365,8 @@ int ast_indicate(struct ast_channel *chan, int condition)
res = 0;
} else if (condition == AST_CONTROL_PROGRESS) {
/* ast_playtones_stop(chan); */
+ } else if (condition == AST_CONTROL_PROCEEDING) {
+ /* Do nothing, really */
} else {
/* not handled */
ast_log(LOG_WARNING, "Unable to handle indication %d for '%s'\n", condition, chan->name);