diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 01:02:12 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-02-08 01:02:12 +0000 |
commit | e0acf3780a1c9092c09056df796816b96e4d2a02 (patch) | |
tree | d4ae7b0db267c79c595ac27906af6eea569b9f5e | |
parent | 7540296fd491f4a474d7afa823f7ca522aa2f390 (diff) | |
download | samba-e0acf3780a1c9092c09056df796816b96e4d2a02.tar.gz samba-e0acf3780a1c9092c09056df796816b96e4d2a02.tar.bz2 samba-e0acf3780a1c9092c09056df796816b96e4d2a02.zip |
Make this table static const.
Andrew Bartlett
(This used to be commit 0686bc9e076c722e33dd9b236cf7c33d448c3b34)
-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[] = { |