diff options
author | Volker Lendecke <vl@samba.org> | 2010-04-23 07:06:03 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-04-23 07:07:04 +0200 |
commit | 9cd712d1bc1ac5140597e86b5c634d2c820d86de (patch) | |
tree | 53daa60d84c8edc039a01a6087664ec8e419b9c3 | |
parent | a14938377e42344eb04a3d3003199b231e88dc8d (diff) | |
download | samba-9cd712d1bc1ac5140597e86b5c634d2c820d86de.tar.gz samba-9cd712d1bc1ac5140597e86b5c634d2c820d86de.tar.bz2 samba-9cd712d1bc1ac5140597e86b5c634d2c820d86de.zip |
s3: Fix a cut&paste error in a debug message in check_oem_password()
-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; } |