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-null.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-null.c')
-rw-r--r-- | packet-null.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-null.c b/packet-null.c index ec43d1bc69..493012bab0 100644 --- a/packet-null.c +++ b/packet-null.c @@ -1,7 +1,7 @@ /* packet-null.c * Routines for null packet disassembly * - * $Id: packet-null.c,v 1.9 1999/07/13 02:52:53 gram Exp $ + * $Id: packet-null.c,v 1.10 1999/07/29 05:47:00 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -40,10 +40,10 @@ #include "packet.h" -int proto_null = -1; -int hf_null_next = -1; -int hf_null_len = -1; -int hf_null_family = -1; +static int proto_null = -1; +static int hf_null_next = -1; +static int hf_null_len = -1; +static int hf_null_family = -1; /* Null/loopback structs and definitions */ |