[svn-commits] russell: branch 1.4 r281566 - /branches/1.4/apps/app_dial.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Aug 10 12:45:50 CDT 2010
Author: russell
Date: Tue Aug 10 12:45:45 2010
New Revision: 281566
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=281566
Log:
Reset visible indication after answer.
(closes issue #17641)
Reported by: klaus3000
Patches:
ast1.6.2.9-app_dial-visible_indication.patch.txt uploaded by klaus3000 (license 65)
Tested by: schmidts
Modified:
branches/1.4/apps/app_dial.c
Modified: branches/1.4/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/apps/app_dial.c?view=diff&rev=281566&r1=281565&r2=281566
==============================================================================
--- branches/1.4/apps/app_dial.c (original)
+++ branches/1.4/apps/app_dial.c Tue Aug 10 12:45:45 2010
@@ -1856,8 +1856,9 @@
sentringing = 0;
ast_indicate(chan, -1);
}
- /* Be sure no generators are left on it */
+ /* Be sure no generators are left on it and reset the visible indication */
ast_deactivate_generator(chan);
+ chan->visible_indication = 0;
/* Make sure channels are compatible */
res = ast_channel_make_compatible(chan, peer);
if (res < 0) {
More information about the svn-commits
mailing list