diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-02-15 12:54:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:20 -0500 |
commit | 3b14713f6d583a33fc2b2bb8c2c3aab6f5928630 (patch) | |
tree | 8a61ddfc1c61160cebea24ea7aefdaa05efb735e /source4/auth/credentials | |
parent | 2b086ac63e660b7f65b3b2716326ceffd53aff99 (diff) | |
download | samba-3b14713f6d583a33fc2b2bb8c2c3aab6f5928630.tar.gz samba-3b14713f6d583a33fc2b2bb8c2c3aab6f5928630.tar.bz2 samba-3b14713f6d583a33fc2b2bb8c2c3aab6f5928630.zip |
r21362: rename:
"ntPwdHash" => "unicodePwd"
"lmPwdHash" => "dBCSPwd"
"sambaLMPwdHistory" => "lmPwdHistory"
"sambaNTPwdHistory" => "ntPwdHistory"
Note: you need to reprovision after this change!
metze
(This used to be commit dc4242c09c0402cbfdba912f82892df3153456ad)
Diffstat (limited to 'source4/auth/credentials')
-rw-r--r-- | source4/auth/credentials/credentials_files.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/credentials/credentials_files.c b/source4/auth/credentials/credentials_files.c index 2978fe16f8..023dc90407 100644 --- a/source4/auth/credentials/credentials_files.c +++ b/source4/auth/credentials/credentials_files.c @@ -184,7 +184,7 @@ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred, "flatname", "realm", "secureChannelType", - "ntPwdHash", + "unicodePwd", "msDS-KeyVersionNumber", "saltPrincipal", "privateKeytab", @@ -264,7 +264,7 @@ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred, } if (!password) { - const struct ldb_val *nt_password_hash = ldb_msg_find_ldb_val(msgs[0], "ntPwdHash"); + const struct ldb_val *nt_password_hash = ldb_msg_find_ldb_val(msgs[0], "unicodePwd"); struct samr_Password hash; ZERO_STRUCT(hash); if (nt_password_hash) { |