[svn-commits] rmudgett: branch 10 r357408 - in /branches/10: ./ channels/sig_pri.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Feb 28 14:58:56 CST 2012


Author: rmudgett
Date: Tue Feb 28 14:58:52 2012
New Revision: 357408

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=357408
Log:
Use more reasonable cause code when rejecting incoming call waiting calls.

(closes issue ASTERISK-19397)
Reported by: Birger Harzenetter
Patches:
      nochannel-cause.patch (license #5870) patch uploaded by Birger Harzenetter
........

Merged revisions 357407 from http://svn.asterisk.org/svn/asterisk/branches/1.8

Modified:
    branches/10/   (props changed)
    branches/10/channels/sig_pri.c

Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: branches/10/channels/sig_pri.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/channels/sig_pri.c?view=diff&rev=357408&r1=357407&r2=357408
==============================================================================
--- branches/10/channels/sig_pri.c (original)
+++ branches/10/channels/sig_pri.c Tue Feb 28 14:58:52 2012
@@ -5910,7 +5910,7 @@
 #endif	/* defined(HAVE_PRI_CALL_WAITING) */
 					{
 						/* We will not accept incoming call waiting calls. */
-						pri_hangup(pri->pri, e->ring.call, PRI_CAUSE_INCOMPATIBLE_DESTINATION);
+						pri_hangup(pri->pri, e->ring.call, PRI_CAUSE_NORMAL_CIRCUIT_CONGESTION);
 						break;
 					}
 #if defined(HAVE_PRI_CALL_WAITING)




More information about the svn-commits mailing list