diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-01-17 04:12:12 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-01-17 04:12:12 +0000 |
commit | ba51d1d888f98e196627486490e8569faeb641c2 (patch) | |
tree | a75d467bddd17c322b932734549db27cf1cf56fa /source3 | |
parent | 31482b2c6b0936b0b999eb2e001e5613f721745a (diff) | |
download | samba-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)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
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, |