[svn-commits] oej: branch oej/darjeeling-prack-1.8 r369696 - /team/oej/darjeeling-prack-1.8...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jul 6 07:15:14 CDT 2012


Author: oej
Date: Fri Jul  6 07:15:10 2012
New Revision: 369696

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=369696
Log:
Bool hunts me down on a Friday.

Modified:
    team/oej/darjeeling-prack-1.8/channels/chan_sip.c

Modified: team/oej/darjeeling-prack-1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/oej/darjeeling-prack-1.8/channels/chan_sip.c?view=diff&rev=369696&r1=369695&r2=369696
==============================================================================
--- team/oej/darjeeling-prack-1.8/channels/chan_sip.c (original)
+++ team/oej/darjeeling-prack-1.8/channels/chan_sip.c Fri Jul  6 07:15:10 2012
@@ -12321,7 +12321,7 @@
 	   check the rseq sequence numbers for retransmits and act upon them.
 	*/
 
-	if (!ast_strlen_zero(p->theirtag_prack) && !strcmp(p->theirtag, p->theirtag_prack)) {
+	if (!ast_strlen_zero(p->theirtag_prack) && strcmp(p->theirtag, p->theirtag_prack)) {
 		/* We have already sent a PRACK in this dialog, but to a different device.
 		   In this code, we focus on the first response that requires PRACK and do not check
 		   the validity of rseq in responses in other early dialogs by controlling




More information about the svn-commits mailing list