[asterisk-commits] rmudgett: branch group/CCSS r240369 - /team/group/CCSS/main/ccss.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jan 15 12:23:20 CST 2010


Author: rmudgett
Date: Fri Jan 15 12:23:16 2010
New Revision: 240369

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=240369
Log:
Fix silly expression error.

Modified:
    team/group/CCSS/main/ccss.c

Modified: team/group/CCSS/main/ccss.c
URL: http://svnview.digium.com/svn/asterisk/team/group/CCSS/main/ccss.c?view=diff&rev=240369&r1=240368&r2=240369
==============================================================================
--- team/group/CCSS/main/ccss.c (original)
+++ team/group/CCSS/main/ccss.c Fri Jan 15 12:23:16 2010
@@ -3391,7 +3391,7 @@
 		return;
 	}
 
-	if (!ast_get_cc_monitor_policy(ast_channel_get_cc_config_params(outgoing)) == AST_CC_MONITOR_GENERIC) {
+	if (ast_get_cc_monitor_policy(ast_channel_get_cc_config_params(outgoing)) != AST_CC_MONITOR_GENERIC) {
 		/* This sort of CCBS only works if using generic CC. For native, we would end up sending
 		 * a CC request for a non-existent call. The far end will reject this every time
 		 */




More information about the asterisk-commits mailing list