From: Kevin P. Fleming Date: Fri, 1 Dec 2006 23:39:59 +0000 (+0000) Subject: Merged revisions 48193 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~3809 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=359a553961ce2834e51ea1b953ef1fe76bf1d811;p=thirdparty%2Fasterisk.git Merged revisions 48193 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r48193 | kpfleming | 2006-12-01 17:37:28 -0600 (Fri, 01 Dec 2006) | 10 lines 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) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48194 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index 2d15fbefc0..4cf11338f4 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -1430,6 +1430,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags 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++;