[asterisk-commits] mattf: branch 1.6.0 r115942 - in /branches/1.6.0: ./ channels/chan_zap.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue May 13 15:19:58 CDT 2008


Author: mattf
Date: Tue May 13 15:19:58 2008
New Revision: 115942

URL: http://svn.digium.com/view/asterisk?view=rev&rev=115942
Log:
Merged revisions 115941 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r115941 | mattf | 2008-05-13 15:18:04 -0500 (Tue, 13 May 2008) | 1 line

Need to clear calling_party_cat variable after we retrieve it
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/channels/chan_zap.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_zap.c?view=diff&rev=115942&r1=115941&r2=115942
==============================================================================
--- branches/1.6.0/channels/chan_zap.c (original)
+++ branches/1.6.0/channels/chan_zap.c Tue May 13 15:19:58 2008
@@ -9235,7 +9235,7 @@
 	snprintf(tmp, sizeof(tmp), "%d", p->calling_party_cat);
 	pbx_builtin_setvar_helper(c, "SS7_CALLING_PARTY_CATEGORY", tmp);
 	/* Clear this after we set it */
-	p->call_ref_pc = 0;
+	p->calling_party_cat = 0;
 
 	if (!ast_strlen_zero(p->redirecting_num)) {
 		pbx_builtin_setvar_helper(c, "SS7_REDIRECTING_NUMBER", p->redirecting_num);




More information about the asterisk-commits mailing list