summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2009-07-14 16:09:38 +0000
committerMark Michelson <mmichelson@digium.com>2009-07-14 16:09:38 +0000
commitb25242a819cc432a54ad63c28f678a0726c056f6 (patch)
tree3e7493484f6e022ef3fe70778708c9eb5bcb6e2c /apps/app_dial.c
parente55d1b11b9a102e614df7bbd38828256e39a6f4b (diff)
Reset the sentringing indication when redirects occur.
If a redirecting control frame is processed or a call forward occurs, we need to reset the sentringing flag so that we can send another ringing indication to the phone that may contain a connected line update. AST-164 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@206455 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dial.c')
-rw-r--r--apps/app_dial.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 92d16576b..ceb5f5d2f 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -972,6 +972,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in,
continue;
/* here, o->chan == c == winner */
if (!ast_strlen_zero(c->call_forward)) {
+ (*sentringing) = 0;
do_forward(o, &num, peerflags, single, to);
continue;
}
@@ -1097,6 +1098,7 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in,
} else {
ast_verb(3, "%s redirecting info has changed, passing it to %s\n", c->name, in->name);
ast_indicate_data(in, AST_CONTROL_REDIRECTING, f->data.ptr, f->datalen);
+ (*sentringing) = 0;
}
break;
case AST_CONTROL_PROCEEDING: