[asterisk-commits] mattf: trunk r192427 - /trunk/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue May 5 12:33:54 CDT 2009
Author: mattf
Date: Tue May 5 12:33:42 2009
New Revision: 192427
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=192427
Log:
Revert CPC patch for now, until I decide whether or not it all should be merged into libss7/1.0 (It's still in the bug13495 branch and in libss7/trunk)
Modified:
trunk/channels/chan_dahdi.c
Modified: trunk/channels/chan_dahdi.c
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/channels/chan_dahdi.c?view=diff&rev=192427&r1=192426&r2=192427
==============================================================================
--- trunk/channels/chan_dahdi.c (original)
+++ trunk/channels/chan_dahdi.c Tue May 5 12:33:42 2009
@@ -3434,7 +3434,6 @@
const char *call_ref_id = NULL;
const char *call_ref_pc = NULL;
const char *send_far = NULL;
- const char *calling_party_category = NULL;
c = strchr(dest, '/');
if (c) {
@@ -3543,10 +3542,6 @@
isup_set_callref(p->ss7call, atoi(call_ref_id),
call_ref_pc ? atoi(call_ref_pc) : 0);
}
-
- calling_party_category = pbx_builtin_getvar_helper(ast, "SS7_CALLING_PARTY_CATEGORY");
- if (calling_party_category)
- isup_set_calling_party_category(p->ss7call, atoi(calling_party_category));
send_far = pbx_builtin_getvar_helper(ast, "SS7_SEND_FAR");
if ((send_far) && ((strncmp("NO", send_far, strlen(send_far))) != 0 ))
More information about the asterisk-commits
mailing list