summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/password_hash.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-09-21 12:28:38 -0700
committerAndrew Bartlett <abartlet@samba.org>2009-09-21 12:28:38 -0700
commit1afc7c453c1d5f7e761e46cdc69900305a149820 (patch)
treea7ec12da94b14d00019a7f9cdbc8d8d843199ec7 /source4/dsdb/samdb/ldb_modules/password_hash.c
parent8738b83a446ef667bc162b04affc17dbba7e58a8 (diff)
downloadsamba-1afc7c453c1d5f7e761e46cdc69900305a149820.tar.gz
samba-1afc7c453c1d5f7e761e46cdc69900305a149820.tar.bz2
samba-1afc7c453c1d5f7e761e46cdc69900305a149820.zip
s4:kerberos Fix the salt to match Windows 2008.
The previous commit changed the wrong end - we must fix our server, not our client. Andrew Bartlett
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/password_hash.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/password_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/password_hash.c b/source4/dsdb/samdb/ldb_modules/password_hash.c
index a04e52469d..a50e5b4a66 100644
--- a/source4/dsdb/samdb/ldb_modules/password_hash.c
+++ b/source4/dsdb/samdb/ldb_modules/password_hash.c
@@ -248,7 +248,7 @@ static int setup_kerberos_keys(struct setup_password_fields_io *io)
char *name;
char *saltbody;
- name = talloc_strdup(io->ac, io->u.sAMAccountName);
+ name = strlower_talloc(io->ac, io->u.sAMAccountName);
if (!name) {
ldb_oom(ldb);
return LDB_ERR_OPERATIONS_ERROR;