[asterisk-commits] blanchet: branch group/v6 r85153 - /team/group/v6/trunk/main/rtp.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Oct 9 12:26:39 CDT 2007


Author: blanchet
Date: Tue Oct  9 12:26:38 2007
New Revision: 85153

URL: http://svn.digium.com/view/asterisk?view=rev&rev=85153
Log:
inversed logic on ip version compare.

Modified:
    team/group/v6/trunk/main/rtp.c

Modified: team/group/v6/trunk/main/rtp.c
URL: http://svn.digium.com/view/asterisk/team/group/v6/trunk/main/rtp.c?view=diff&rev=85153&r1=85152&r2=85153
==============================================================================
--- team/group/v6/trunk/main/rtp.c (original)
+++ team/group/v6/trunk/main/rtp.c Tue Oct  9 12:26:38 2007
@@ -3919,7 +3919,7 @@
 
 	/* both rtp endpoints must use the same IPversion to do native bridging */
         /* if not same IPversion, then try partial bridge */
-	if (!ast_vinetsock_sa_ipv_cmp(
+	if (ast_vinetsock_sa_ipv_cmp(
 		(struct sockaddr *)&p0->them, p0->themlen, 
 		(struct sockaddr *)&p1->them, p1->themlen)) {
 




More information about the asterisk-commits mailing list