diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-29 08:20:18 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-29 08:20:18 +0000 |
commit | 9a80f0a5212d8ad6704cebefbaf091a473ab04a4 (patch) | |
tree | 53112d7b0bd3805cf4f0a1184361d95493a61129 /packet-asap.c | |
parent | 30f02bc99cb3a578758c76cc6cb0c8278273e6be (diff) | |
download | wireshark-9a80f0a5212d8ad6704cebefbaf091a473ab04a4.tar.gz wireshark-9a80f0a5212d8ad6704cebefbaf091a473ab04a4.tar.bz2 wireshark-9a80f0a5212d8ad6704cebefbaf091a473ab04a4.zip |
Removal (or, at least, #ifdeffing out) of unused variables and
functions, from David Frascone.
svn path=/trunk/; revision=5288
Diffstat (limited to 'packet-asap.c')
-rw-r--r-- | packet-asap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-asap.c b/packet-asap.c index 834d104088..cd4e7c7f93 100644 --- a/packet-asap.c +++ b/packet-asap.c @@ -5,7 +5,7 @@ * * Copyright 2002, Michael Tuexen <Michael.Tuexen@icn.siemens.de> * - * $Id: packet-asap.c,v 1.1 2002/04/15 21:47:59 guy Exp $ + * $Id: packet-asap.c,v 1.2 2002/04/29 08:20:05 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -41,7 +41,9 @@ static int proto_asap = -1; static int hf_asap_message_type = -1; static int hf_asap_message_flags = -1; static int hf_asap_message_length = -1; +#ifdef ASAP_UNUSED_HANDLES static int hf_asap_message_value = -1; +#endif static int hf_asap_parameter_type = -1; static int hf_asap_parameter_length = -1; static int hf_asap_parameter_value = -1; |