aboutsummaryrefslogtreecommitdiffstats
path: root/packet-mip.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-11-21 02:01:06 +0000
committerGuy Harris <guy@alum.mit.edu>2001-11-21 02:01:06 +0000
commit60fe401dc7a1d0f1d11f0e1f4e7b1cd29d5e7f5d (patch)
tree3406b514e1c09bdc54bfc77913edb0688d160265 /packet-mip.c
parent10da28737f65d468bb2d6d69005ee926f771e06f (diff)
Get rid of some unused variables.
svn path=/trunk/; revision=4241
Diffstat (limited to 'packet-mip.c')
-rw-r--r--packet-mip.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/packet-mip.c b/packet-mip.c
index d4b3886698..cae0135bc5 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.21 2001/10/31 22:16:25 guy Exp $
+ * $Id: packet-mip.c,v 1.22 2001/11/21 02:01:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -177,7 +177,6 @@ dissect_mip_extensions( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
guint8 ext_subtype=0;
size_t offset = 0;
gchar ext_data[256];
- gchar *eString;
size_t dataLength;
size_t hdrLen;
@@ -287,10 +286,10 @@ dissect_mip( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree *mip_tree=NULL;
proto_item *tf;
proto_tree *flags_tree;
- guint8 type, code;
+ guint8 type;
guint8 flags;
nstime_t ident_time;
- size_t offset=0, eoffset;
+ size_t offset=0;
tvbuff_t *extensions_tvb;
size_t dataRemaining;