[svn-commits] kpfleming: branch 1.4 r48193 - in /branches/1.4: ./
apps/app_dial.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Fri Dec 1 16:37:28 MST 2006
Author: kpfleming
Date: Fri Dec 1 17:37:28 2006
New Revision: 48193
URL: http://svn.digium.com/view/asterisk?view=rev&rev=48193
Log:
Merged revisions 48192 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r48192 | kpfleming | 2006-12-01 17:30:59 -0600 (Fri, 01 Dec 2006) | 2 lines
if Dial() is going to send music-on-hold to the calling party, it has to send PROGRESS first to ensure that the reverse audio path has been setup first (BE-106)
........
Modified:
branches/1.4/ (props changed)
branches/1.4/apps/app_dial.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/apps/app_dial.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_dial.c?view=diff&rev=48193&r1=48192&r2=48193
==============================================================================
--- branches/1.4/apps/app_dial.c (original)
+++ branches/1.4/apps/app_dial.c Fri Dec 1 17:37:28 2006
@@ -1231,6 +1231,7 @@
if (ast_test_flag(outgoing, OPT_MUSICBACK)) {
moh = 1;
ast_moh_start(chan, opt_args[OPT_ARG_MUSICBACK], NULL);
+ ast_indicate(chan, AST_CONTROL_PROGRESS);
} else if (ast_test_flag(outgoing, OPT_RINGBACK)) {
ast_indicate(chan, AST_CONTROL_RINGING);
sentringing++;
More information about the svn-commits
mailing list