summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-01-17 04:12:12 +0000
committerAndrew Tridgell <tridge@samba.org>2003-01-17 04:12:12 +0000
commitba51d1d888f98e196627486490e8569faeb641c2 (patch)
treea75d467bddd17c322b932734549db27cf1cf56fa
parent31482b2c6b0936b0b999eb2e001e5613f721745a (diff)
downloadsamba-ba51d1d888f98e196627486490e8569faeb641c2.tar.gz
samba-ba51d1d888f98e196627486490e8569faeb641c2.tar.bz2
samba-ba51d1d888f98e196627486490e8569faeb641c2.zip
the 'static' keyword here is useless as we are not declaring a
variable or function (This used to be commit f2c9c64900c4da24f73b188deb0f57271e3bf3e7)
-rw-r--r--source3/utils/ntlm_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c
index b8cb0f2478..9e4318def3 100644
--- a/source3/utils/ntlm_auth.c
+++ b/source3/utils/ntlm_auth.c
@@ -378,7 +378,7 @@ static BOOL check_auth_crap(void)
/* Main program */
-static enum {
+enum {
OPT_USERNAME = 1000,
OPT_DOMAIN,
OPT_WORKSTATION,