diff options
author | Luke Leighton <lkcl@samba.org> | 1999-07-07 16:44:38 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-07-07 16:44:38 +0000 |
commit | 527820d30646f3954155a509752e2b08c96b1448 (patch) | |
tree | de7f3496420960927a3bbd04699299f4f4a2aa5d /source3/smbd/password.c | |
parent | a0b0fa7bb1eb83ff26931831fa1006000d29e861 (diff) | |
download | samba-527820d30646f3954155a509752e2b08c96b1448.tar.gz samba-527820d30646f3954155a509752e2b08c96b1448.tar.bz2 samba-527820d30646f3954155a509752e2b08c96b1448.zip |
oops, refused lm when ntlmv2 was true not false/auto. oops!
(This used to be commit 6b4b24d2208b1b076dfc2f7202917ca0acaeb398)
Diffstat (limited to 'source3/smbd/password.c')
-rw-r--r-- | source3/smbd/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 026fd5c10c..b10bc33a3a 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -426,7 +426,7 @@ BOOL smb_password_ok(struct smb_passwd *smb_pass, uchar chal[8], DEBUG(4,("NT MD4 password check failed\n")); } - if (lp_server_ntlmv2() == False) + if (lp_server_ntlmv2() == True) { DEBUG(4,("Not checking LM MD4 password\n")); return False; |