From 6d53d9f2ce68db1cc2cf6fc0ebaca548bcfb9a42 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 5 Nov 2010 12:49:42 +0100 Subject: s4:password_hash LDB module - fix indentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Autobuild-User: Matthias Dieter Wallnöfer Autobuild-Date: Fri Nov 5 12:31:28 UTC 2010 on sn-devel-104 --- source4/dsdb/samdb/ldb_modules/password_hash.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'source4') 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 { -- cgit