[svn-commits] simon.perreault: branch group/v6-new r266923 - /team/group/v6-new/channels/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jun 2 10:22:26 CDT 2010


Author: simon.perreault
Date: Wed Jun  2 10:22:24 2010
New Revision: 266923

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=266923
Log:
Fixed parentheses.

Modified:
    team/group/v6-new/channels/chan_sip.c

Modified: team/group/v6-new/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/group/v6-new/channels/chan_sip.c?view=diff&rev=266923&r1=266922&r2=266923
==============================================================================
--- team/group/v6-new/channels/chan_sip.c (original)
+++ team/group/v6-new/channels/chan_sip.c Wed Jun  2 10:22:24 2010
@@ -26404,7 +26404,7 @@
 
 	ast_sockaddr_to_sin(&them, &them_sin);
 
-	if ((res = ast_apply_ha(p->directmediaha, &them_sin) == AST_SENSE_DENY)) {
+	if ((res = ast_apply_ha(p->directmediaha, &them_sin)) == AST_SENSE_DENY) {
 		ast_debug(3, "Reinvite %s to %s denied by directmedia ACL on %s\n",
 			op, ast_sockaddr_stringify(&them), ast_sockaddr_stringify(&us));
 	}




More information about the svn-commits mailing list