1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s3: Fix a cut&paste error in a debug message in check_oem_password()

This commit is contained in:
Volker Lendecke 2010-04-23 07:06:03 +02:00
parent a14938377e
commit 9cd712d1bc

View File

@ -947,7 +947,8 @@ static NTSTATUS check_oem_password(const char *user,
*/
E_old_pw_hash(new_nt_hash, nt_pw, verifier);
if (memcmp(verifier, old_nt_hash_encrypted, 16)) {
DEBUG(0,("check_oem_password: old lm password doesn't match.\n"));
DEBUG(0, ("check_oem_password: old nt "
"password doesn't match.\n"));
return NT_STATUS_WRONG_PASSWORD;
}