summaryrefslogtreecommitdiff
path: root/source3/utils/ntlm_auth_diagnostics.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-19 10:56:12 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-20 10:50:48 +1100
commitf91c616176555dc29052abd4c09ab1bf292c2929 (patch)
tree55744851663ddea8e97ac931047c45dcf2d9dcdb /source3/utils/ntlm_auth_diagnostics.c
parent3ebd79a6d042a1d7b4d671aec65883b2b786b7c5 (diff)
downloadsamba-f91c616176555dc29052abd4c09ab1bf292c2929.tar.gz
samba-f91c616176555dc29052abd4c09ab1bf292c2929.tar.bz2
samba-f91c616176555dc29052abd4c09ab1bf292c2929.zip
s3-ntlm_auth: allow ntlm_auth --diagnostics to pass again
This still requires that the server permit LM passwords, but our s3dc test environment has this enabled. Andrew Bartlett
Diffstat (limited to 'source3/utils/ntlm_auth_diagnostics.c')
-rw-r--r--source3/utils/ntlm_auth_diagnostics.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/utils/ntlm_auth_diagnostics.c b/source3/utils/ntlm_auth_diagnostics.c
index 41462c052b..e83e975ffd 100644
--- a/source3/utils/ntlm_auth_diagnostics.c
+++ b/source3/utils/ntlm_auth_diagnostics.c
@@ -98,7 +98,7 @@ static bool test_lm_ntlm_broken(enum ntlm_break break_which)
&chall,
&lm_response,
&nt_response,
- flags,
+ flags, 0,
lm_key,
user_session_key,
&error_string, NULL);
@@ -197,7 +197,7 @@ static bool test_ntlm_in_lm(void)
&chall,
&nt_response,
NULL,
- flags,
+ flags, 0,
lm_key,
user_session_key,
&error_string, NULL);
@@ -268,7 +268,7 @@ static bool test_ntlm_in_both(void)
&chall,
&nt_response,
&nt_response,
- flags,
+ flags, 0,
lm_key,
user_session_key,
&error_string, NULL);
@@ -359,7 +359,7 @@ static bool test_lmv2_ntlmv2_broken(enum ntlm_break break_which)
&chall,
&lmv2_response,
&ntlmv2_response,
- flags,
+ flags, 0,
NULL,
user_session_key,
&error_string, NULL);
@@ -510,7 +510,7 @@ static bool test_plaintext(enum ntlm_break break_which)
&chall,
&lm_response,
&nt_response,
- flags,
+ flags, MSV1_0_CLEARTEXT_PASSWORD_ALLOWED,
lm_key,
user_session_key,
&error_string, NULL);