aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nlm.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-14 23:04:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-04-14 23:04:04 +0000
commit3f50884f2d0d09ed8d5cbe8086066b7b95f8db91 (patch)
treedddb463b1b5567290a52f49b6534d5a6f4015fde /packet-nlm.c
parent142bd9eec36a4b3a140e0a74f33ff5f9924aadae (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5162 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-nlm.c')
-rw-r--r--packet-nlm.c8
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" },