diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 11:48:28 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 11:48:28 +0000 |
commit | 079822437838ff102bc07c0b101038498aaca6c4 (patch) | |
tree | 90c837a72928e0cfa66d49930bbfa6b7f78891ca | |
parent | b655b99f7c3e534a18393d562073a6d05488f090 (diff) | |
download | samba-079822437838ff102bc07c0b101038498aaca6c4.tar.gz samba-079822437838ff102bc07c0b101038498aaca6c4.tar.bz2 samba-079822437838ff102bc07c0b101038498aaca6c4.zip |
(merge from 3.0)
Make this table static const.
Andrew Bartlett
(This used to be commit 3803cb36e9d94c08bf310c0ef1cdfc29b443dc0e)
-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 74918045ee..d2a1547f77 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1955,7 +1955,7 @@ static BOOL test_plaintext_lm_only(void) { */ -struct ntlm_tests { +static const struct ntlm_tests { BOOL (*fn)(void); const char *name; } test_table[] = { |