aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/camel
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-12-14 21:46:56 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-12-14 21:46:56 +0000
commitef6bc891fa436ed9560a6ea5109bbb61258134ec (patch)
tree5c5739adb9cdb2e6653fe67cbb17aa9c44ceff05 /asn1/camel
parent13f87e6f52c044e14bd9b3db58dab3b6002ec732 (diff)
Fix Bug 628 Bugzilla 2.18.3
CAMEL - Connect decoding error - Calledparty number included first two octets svn path=/trunk/; revision=16804
Diffstat (limited to 'asn1/camel')
-rw-r--r--asn1/camel/camel.cnf6
1 files changed, 1 insertions, 5 deletions
diff --git a/asn1/camel/camel.cnf b/asn1/camel/camel.cnf
index 91a3e65887..b85f243fe9 100644
--- a/asn1/camel/camel.cnf
+++ b/asn1/camel/camel.cnf
@@ -43,16 +43,12 @@ MAP-CH-DataTypes gsm_map
#.FN_BODY CalledPartyNumber
- proto_item* parameter_item;
- proto_item* parameter_tree;
tvbuff_t *isup_tvb;
guint32 len;
len=tvb_length_remaining(tvb,offset);
- parameter_item = proto_tree_add_item(tree, hf_index, tvb, offset, -1, FALSE);
- parameter_tree = proto_item_add_subtree(parameter_item, ett_camelisup_parameter);
isup_tvb = tvb_new_subset(tvb, offset,-1 , -1 );
- dissect_isup_called_party_number_parameter(isup_tvb, parameter_tree, parameter_item);
+ dissect_isup_called_party_number_parameter(isup_tvb, tree, NULL);
offset += len;
#.END