diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-07-29 05:47:07 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-07-29 05:47:07 +0000 |
commit | 7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3 (patch) | |
tree | 3e8a46fe6f7bb69698edb1187655e445bbfda37c /packet-fddi.c | |
parent | 6f1d3a3be830da628246f7cea77fe9c491470d17 (diff) | |
download | wireshark-7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3.tar.gz wireshark-7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3.tar.bz2 wireshark-7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3.zip |
Made the protocol (but not the fields) use the new proto_tree routine,
allowing users to filter on the existence of these protocols. I also
added packet-clip.c to the Nmake makefile.
svn path=/trunk/; revision=402
Diffstat (limited to 'packet-fddi.c')
-rw-r--r-- | packet-fddi.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packet-fddi.c b/packet-fddi.c index 32a4f1a1d4..159024dcf8 100644 --- a/packet-fddi.c +++ b/packet-fddi.c @@ -3,7 +3,7 @@ * * Laurent Deniel <deniel@worldnet.fr> * - * $Id: packet-fddi.c,v 1.14 1999/07/15 15:32:41 gram Exp $ + * $Id: packet-fddi.c,v 1.15 1999/07/29 05:46:54 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -37,12 +37,12 @@ #include "packet.h" #include "resolv.h" -int proto_fddi = -1; -int hf_fddi_fc = -1; -int hf_fddi_dst = -1; -int hf_fddi_dst_vendor = -1; -int hf_fddi_src = -1; -int hf_fddi_src_vendor = -1; +static int proto_fddi = -1; +static int hf_fddi_fc = -1; +static int hf_fddi_dst = -1; +static int hf_fddi_dst_vendor = -1; +static int hf_fddi_src = -1; +static int hf_fddi_src_vendor = -1; /* FDDI Frame Control values */ |