[libss7-commits] mattf: branch 1.0 r286 - /branches/1.0/isup.c

SVN commits to the libss7 project libss7-commits at lists.digium.com
Tue May 25 11:30:14 CDT 2010


Author: mattf
Date: Tue May 25 11:30:12 2010
New Revision: 286

URL: http://svnview.digium.com/svn/libss7?view=rev&rev=286
Log:
We should be waiting to cut through the circuit until we get a COT even in cases where we get an indicator of a COT test on a previous circuit

Modified:
    branches/1.0/isup.c

Modified: branches/1.0/isup.c
URL: http://svnview.digium.com/svn/libss7/branches/1.0/isup.c?view=diff&rev=286&r1=285&r2=286
==============================================================================
--- branches/1.0/isup.c (original)
+++ branches/1.0/isup.c Tue May 25 11:30:12 2010
@@ -338,8 +338,8 @@
 {
 	unsigned char cci = (parm[0] >> 2) & 0x3;
 
-	if (cci == 0x1)
-		c->cot_check_required = 1;
+	if (cci != 0x3)
+		c->cot_check_required = cci;
 	else
 		c->cot_check_required = 0;
 




More information about the libss7-commits mailing list