aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ranap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-14 23:22:22 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-14 23:22:22 +0000
commit2db2ecd5ef1e39dfdb76151d30cd544814f298cc (patch)
tree64d0561f883974b6cc1a30309a5f9444292a89d9 /packet-ranap.c
parent3f50884f2d0d09ed8d5cbe8086066b7b95f8db91 (diff)
From Joerg Mayer: get rid of some unused variables and arguments.
Use "tvb_get_ntohs()" to fetch the checksum from a VJ compressed packet, rather than doing the ntoh by hand. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5163 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ranap.c')
-rw-r--r--packet-ranap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ranap.c b/packet-ranap.c
index 7ca4eec7a5..da68eec49b 100644
--- a/packet-ranap.c
+++ b/packet-ranap.c
@@ -3,7 +3,7 @@
* Based on 3GPP TS 25.413 V3.4.0
* Copyright 2001, Martin Held <Martin.Held@icn.siemens.de>
*
- * $Id: packet-ranap.c,v 1.11 2002/01/24 09:20:50 guy Exp $
+ * $Id: packet-ranap.c,v 1.12 2002/04/14 23:22:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3830,7 +3830,7 @@ dissect_ranap_ie(guint16 ie_id, tvbuff_t *ie_contents_tvb, proto_tree *ie_tree)
static int
-dissect_ranap_ie_container(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_tree *ranap_tree)
+dissect_ranap_ie_container(tvbuff_t *tvb, proto_tree *ranap_tree)
{
proto_item *ie_item = NULL;
proto_tree *ie_tree = NULL;
@@ -4084,7 +4084,7 @@ dissect_ranap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
ie_tvb = tvb_new_subset(tvb, offset, -1, -1);
/* dissect the ies */
- dissect_ranap_ie_container(ie_tvb, pinfo, tree, ranap_tree);
+ dissect_ranap_ie_container(ie_tvb, ranap_tree);
}