diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-14 23:04:04 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-14 23:04:04 +0000 |
commit | db319329411e4b1db7e19e8cc5eb518525d107ad (patch) | |
tree | dddb463b1b5567290a52f49b6534d5a6f4015fde /packet-nlm.c | |
parent | 46a89d60f56997c8b859d67cd7f6b4442211f871 (diff) | |
download | wireshark-db319329411e4b1db7e19e8cc5eb518525d107ad.tar.gz wireshark-db319329411e4b1db7e19e8cc5eb518525d107ad.tar.bz2 wireshark-db319329411e4b1db7e19e8cc5eb518525d107ad.zip |
From Joerg Mayer:
Declares some variables static.
Creates a new include file packet-rsvp.h, and make use of it
(change some extern decls to #inlcude).
Move the file packet-pgm.h into packet-pgm.c as it is not used
by anything outside packet-pgm.c.
svn path=/trunk/; revision=5162
Diffstat (limited to 'packet-nlm.c')
-rw-r--r-- | packet-nlm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-nlm.c b/packet-nlm.c index 4503711eca..fc69d52f8a 100644 --- a/packet-nlm.c +++ b/packet-nlm.c @@ -1,7 +1,7 @@ /* packet-nlm.c * Routines for nlm dissection * - * $Id: packet-nlm.c,v 1.24 2002/04/03 13:24:12 girlich Exp $ + * $Id: packet-nlm.c,v 1.25 2002/04/14 23:04:03 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -87,7 +87,7 @@ static gint ett_nlm = -1; static gint ett_nlm_lock = -1; -const value_string names_nlm_stats[] = +static const value_string names_nlm_stats[] = { /* NLM_GRANTED is the function number 5 and the state code 0. * So we use for the state the postfix _S. @@ -116,7 +116,7 @@ const value_string names_nlm_stats[] = }; -const value_string names_fsh_mode[] = +static const value_string names_fsh_mode[] = { #define FSM_DN 0 { FSM_DN, "deny none" }, @@ -131,7 +131,7 @@ const value_string names_fsh_mode[] = }; -const value_string names_fsh_access[] = +static const value_string names_fsh_access[] = { #define FSA_NONE 0 { FSA_NONE, "no access" }, |