summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2009-01-23 19:09:18 +0000
committerJoshua Colp <jcolp@digium.com>2009-01-23 19:09:18 +0000
commit665bba38f13c38f27daade9c7a48f035c13d3fee (patch)
tree047eea74cea73b128b2b16ca3e4972ce37960b25 /apps
parenta394fe3a7a5ad9dca93f4c7fb9ea0623e85a20c0 (diff)
Merged revisions 170568 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r170568 | file | 2009-01-23 15:06:54 -0400 (Fri, 23 Jan 2009) | 4 lines When a call is forwarded stop any active indications. The new channel will provide an indication, if need be, itself. (closes issue #14310) Reported by: RadicAlish ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@170569 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dial.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 1da4c8b5f..f4e8aabd6 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -776,6 +776,9 @@ static void do_forward(struct chanlist *o,
/* Hangup the original channel now, in case we needed it */
ast_hangup(original);
}
+ if (single) {
+ ast_indicate(in, -1);
+ }
}
}