summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/password_hash.c
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-11-05 12:49:42 +0100
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-11-05 12:31:28 +0000
commit6d53d9f2ce68db1cc2cf6fc0ebaca548bcfb9a42 (patch)
tree6842f2f21679929e578539be96cfeec73590825f /source4/dsdb/samdb/ldb_modules/password_hash.c
parentf2456cd5425b4d006cf35df9dc724d040558e0d6 (diff)
downloadsamba-6d53d9f2ce68db1cc2cf6fc0ebaca548bcfb9a42.tar.gz
samba-6d53d9f2ce68db1cc2cf6fc0ebaca548bcfb9a42.tar.bz2
samba-6d53d9f2ce68db1cc2cf6fc0ebaca548bcfb9a42.zip
s4:password_hash LDB module - fix indentation
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Nov 5 12:31:28 UTC 2010 on sn-devel-104
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/password_hash.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/password_hash.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/password_hash.c b/source4/dsdb/samdb/ldb_modules/password_hash.c
index 2c7f4364d3..7b0247922e 100644
--- a/source4/dsdb/samdb/ldb_modules/password_hash.c
+++ b/source4/dsdb/samdb/ldb_modules/password_hash.c
@@ -1300,11 +1300,11 @@ static int setup_given_passwords(struct setup_password_fields_io *io,
return ldb_oom(ldb);
}
if (!convert_string_talloc(io->ac,
- CH_UTF8, CH_UTF16,
- g->cleartext_utf8->data,
- g->cleartext_utf8->length,
- (void *)&cleartext_utf16_str,
- &converted_pw_len, false)) {
+ CH_UTF8, CH_UTF16,
+ g->cleartext_utf8->data,
+ g->cleartext_utf8->length,
+ (void *)&cleartext_utf16_str,
+ &converted_pw_len, false)) {
ldb_asprintf_errstring(ldb,
"setup_password_fields: "
"failed to generate UTF16 password from cleartext UTF8 password");
@@ -1323,11 +1323,11 @@ static int setup_given_passwords(struct setup_password_fields_io *io,
return ldb_oom(ldb);
}
if (!convert_string_talloc(io->ac,
- CH_UTF16MUNGED, CH_UTF8,
- g->cleartext_utf16->data,
- g->cleartext_utf16->length,
- (void *)&cleartext_utf8_str,
- &converted_pw_len, false)) {
+ CH_UTF16MUNGED, CH_UTF8,
+ g->cleartext_utf16->data,
+ g->cleartext_utf16->length,
+ (void *)&cleartext_utf8_str,
+ &converted_pw_len, false)) {
/* We can't bail out entirely, as these unconvertable passwords are frustratingly valid */
talloc_free(cleartext_utf8_blob);
} else {