diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-21 01:21:08 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-21 01:21:08 +0000 |
commit | 10da28737f65d468bb2d6d69005ee926f771e06f (patch) | |
tree | 9df749716440da05879e0110590723584f30e6c3 | |
parent | 6f776aa40d3bd57d6e8fe0a5f6e580dbcda6d70a (diff) | |
download | wireshark-10da28737f65d468bb2d6d69005ee926f771e06f.tar.gz wireshark-10da28737f65d468bb2d6d69005ee926f771e06f.tar.bz2 wireshark-10da28737f65d468bb2d6d69005ee926f771e06f.zip |
Get rid of some unused variables.
svn path=/trunk/; revision=4240
-rw-r--r-- | packet-ssl.c | 3 | ||||
-rw-r--r-- | packet-wsp.c | 3 | ||||
-rw-r--r-- | reassemble.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/packet-ssl.c b/packet-ssl.c index 1cb97c7028..23f95ff677 100644 --- a/packet-ssl.c +++ b/packet-ssl.c @@ -2,7 +2,7 @@ * Routines for ssl dissection * Copyright (c) 2000-2001, Scott Renfro <scott@renfro.org> * - * $Id: packet-ssl.c,v 1.8 2001/10/16 07:13:01 guy Exp $ + * $Id: packet-ssl.c,v 1.9 2001/11/21 01:21:08 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1977,7 +1977,6 @@ static void ssl_set_conv_version(packet_info *pinfo, guint version) { conversation_t *conversation; - void *conv_data; if (pinfo->fd->flags.visited) { diff --git a/packet-wsp.c b/packet-wsp.c index bedd9e6fea..51d7190802 100644 --- a/packet-wsp.c +++ b/packet-wsp.c @@ -2,7 +2,7 @@ * * Routines to dissect WSP component of WAP traffic. * - * $Id: packet-wsp.c,v 1.43 2001/10/26 19:14:51 guy Exp $ + * $Id: packet-wsp.c,v 1.44 2001/11/21 01:21:08 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -2661,7 +2661,6 @@ get_value_type_len (tvbuff_t *tvb, int offset, guint *valueLen, guint8 peek; guint32 len; guint count; - int stringlen; /* Get value part of header */ peek = tvb_get_guint8 (tvb, offset); diff --git a/reassemble.c b/reassemble.c index 42301572e7..45cb0daebf 100644 --- a/reassemble.c +++ b/reassemble.c @@ -1,7 +1,7 @@ /* reassemble.c * Routines for {fragment,segment} reassembly * - * $Id: reassemble.c,v 1.3 2001/09/13 07:53:52 guy Exp $ + * $Id: reassemble.c,v 1.4 2001/11/21 01:21:08 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -76,7 +76,9 @@ fragment_hash(gconstpointer k) { fragment_key* key = (fragment_key*) k; guint hash_val; +/* int i; +*/ hash_val = 0; |