s3: Fix a cut&paste error in a debug message in check_oem_password()
authorVolker Lendecke <vl@samba.org>
Fri, 23 Apr 2010 05:06:03 +0000 (07:06 +0200)
committerVolker Lendecke <vl@samba.org>
Fri, 23 Apr 2010 05:07:04 +0000 (07:07 +0200)
source3/smbd/chgpasswd.c

index dc58cc27adc42de43fa342364f81c05a720b3f64..32ddefb429445400ee3960a2e7421efa8ab5ed8e 100644 (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;
                        }