diff options
-rw-r--r-- | source3/smbd/chgpasswd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c index dc58cc27ad..32ddefb429 100644 --- a/source3/smbd/chgpasswd.c +++ b/source3/smbd/chgpasswd.c @@ -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; } |