diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-05-01 08:17:09 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-05-01 08:17:09 +0000 |
commit | ee154a2a11e6bd50410202822fc56113f44a3da0 (patch) | |
tree | 35a0c5935c3860dfd67c26dcd75e179f7e59d3a1 /packet-mip.c | |
parent | 969e0f7dd488d733268a67ab13204ffe68d02f80 (diff) | |
download | wireshark-ee154a2a11e6bd50410202822fc56113f44a3da0.tar.gz wireshark-ee154a2a11e6bd50410202822fc56113f44a3da0.tar.bz2 wireshark-ee154a2a11e6bd50410202822fc56113f44a3da0.zip |
From Joerg Mayer: get rid of unused arguments.
svn path=/trunk/; revision=5333
Diffstat (limited to 'packet-mip.c')
-rw-r--r-- | packet-mip.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packet-mip.c b/packet-mip.c index 6c2bd4ea76..67db1ba5e9 100644 --- a/packet-mip.c +++ b/packet-mip.c @@ -2,7 +2,7 @@ * Routines for Mobile IP dissection * Copyright 2000, Stefan Raab <sraab@cisco.com> * - * $Id: packet-mip.c,v 1.29 2002/04/29 09:57:29 guy Exp $ + * $Id: packet-mip.c,v 1.30 2002/05/01 08:17:09 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -166,8 +166,7 @@ static const value_string mip_ext_stypes[]= { }; /* Code to dissect extensions */ static void -dissect_mip_extensions( tvbuff_t *tvb, int offset, packet_info *pinfo, - proto_tree *tree) +dissect_mip_extensions( tvbuff_t *tvb, int offset, proto_tree *tree) { proto_item *ti; proto_tree *exts_tree=NULL; @@ -379,7 +378,7 @@ dissect_mip( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) if (tree) { if (tvb_reported_length_remaining(tvb, offset) > 0) - dissect_mip_extensions(tvb, offset, pinfo, mip_tree); + dissect_mip_extensions(tvb, offset, mip_tree); } } /* dissect_mip */ |