[asterisk-commits] mmichelson: branch group/CCSS r239620 - /team/group/CCSS/channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 12 15:35:30 CST 2010


Author: mmichelson
Date: Tue Jan 12 15:35:28 2010
New Revision: 239620

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=239620
Log:
Put parameters in proper order.


Modified:
    team/group/CCSS/channels/chan_sip.c

Modified: team/group/CCSS/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/group/CCSS/channels/chan_sip.c?view=diff&rev=239620&r1=239619&r2=239620
==============================================================================
--- team/group/CCSS/channels/chan_sip.c (original)
+++ team/group/CCSS/channels/chan_sip.c Tue Jan 12 15:35:28 2010
@@ -3913,14 +3913,14 @@
 			goto generic;
 		}
 		/* We're all set! */
-		ast_queue_cc_frame(pvt->owner, interface_name, "SIP", offered_service);
+		ast_queue_cc_frame(pvt->owner, "SIP", interface_name, offered_service);
 		ao2_ref(monitor_instance, -1);
 		return;
 	}
 
 generic:
 	if (monitor_policy == AST_CC_MONITOR_GENERIC || monitor_policy == AST_CC_MONITOR_ALWAYS) {
-		ast_queue_cc_frame(pvt->owner, interface_name, AST_CC_GENERIC_MONITOR_TYPE, service);
+		ast_queue_cc_frame(pvt->owner, AST_CC_GENERIC_MONITOR_TYPE, interface_name, service);
 	}
 }
 




More information about the asterisk-commits mailing list