summaryrefslogtreecommitdiff
path: root/channels/chan_dahdi.c
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2009-05-05 17:33:42 +0000
committerMatthew Fredrickson <creslin@digium.com>2009-05-05 17:33:42 +0000
commit965b0f328e1004e635744f47ca0cdda1554012c2 (patch)
treeb2db5842969a37114dfe29e42d6deb7af54b98c4 /channels/chan_dahdi.c
parent2e7c1e3613abba5e42baeb416e5643c22f535844 (diff)
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)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@192427 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_dahdi.c')
-rw-r--r--channels/chan_dahdi.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index a301b0cf2..3306b5559 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -3434,7 +3434,6 @@ static int dahdi_call(struct ast_channel *ast, char *rdest, int timeout)
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) {
@@ -3544,10 +3543,6 @@ static int dahdi_call(struct ast_channel *ast, char *rdest, int timeout)
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 ))
(isup_far(p->ss7->ss7, p->ss7call));