diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-14 23:22:22 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-14 23:22:22 +0000 |
commit | 64fe90a383556123695cd9895b88f47a3df85f71 (patch) | |
tree | 64d0561f883974b6cc1a30309a5f9444292a89d9 /packet-ranap.c | |
parent | db319329411e4b1db7e19e8cc5eb518525d107ad (diff) | |
download | wireshark-64fe90a383556123695cd9895b88f47a3df85f71.tar.gz wireshark-64fe90a383556123695cd9895b88f47a3df85f71.tar.bz2 wireshark-64fe90a383556123695cd9895b88f47a3df85f71.zip |
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.
svn path=/trunk/; revision=5163
Diffstat (limited to 'packet-ranap.c')
-rw-r--r-- | packet-ranap.c | 6 |
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); } |