From 9cd712d1bc1ac5140597e86b5c634d2c820d86de Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 23 Apr 2010 07:06:03 +0200 Subject: [PATCH] s3: Fix a cut&paste error in a debug message in check_oem_password() --- source3/smbd/chgpasswd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c index dc58cc27adc..32ddefb4294 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; } -- 2.11.4.GIT