[svn-commits] jpeeler: branch 1.6.1 r223834 - in /branches/1.6.1: ./ apps/app_dial.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Oct 12 18:55:11 CDT 2009


Author: jpeeler
Date: Mon Oct 12 18:55:07 2009
New Revision: 223834

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=223834
Log:
Merged revisions 223832 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r223832 | jpeeler | 2009-10-12 18:48:09 -0500 (Mon, 12 Oct 2009) | 15 lines
  
  Merged revisions 223804 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r223804 | jpeeler | 2009-10-12 18:12:50 -0500 (Mon, 12 Oct 2009) | 8 lines
    
    Ensure ringing continues for branched calls after progress is received
    
    While waiting for an answer, don't send progress for branched calls
    for which ringing was sent.
    
    (closes issue #15028)
    Reported by: fnordian
  ........
................

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_dial.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/apps/app_dial.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/apps/app_dial.c?view=diff&rev=223834&r1=223833&r2=223834
==============================================================================
--- branches/1.6.1/apps/app_dial.c (original)
+++ branches/1.6.1/apps/app_dial.c Mon Oct 12 18:55:07 2009
@@ -750,7 +750,9 @@
 					if (single && CAN_EARLY_BRIDGE(peerflags, in, c))
 						ast_channel_early_bridge(in, c);
 					if (!ast_test_flag64(outgoing, OPT_RINGBACK))
-						ast_indicate(in, AST_CONTROL_PROGRESS);
+						if (single || (!single && !pa->sentringing)) {
+							ast_indicate(in, AST_CONTROL_PROGRESS);
+						}
 					break;
 				case AST_CONTROL_VIDUPDATE:
 					ast_verb(3, "%s requested a video update, passing it to %s\n", c->name, in->name);




More information about the svn-commits mailing list