s4:password_hash LDB module - fix indentation
authorMatthias Dieter Wallnöfer <mdw@samba.org>
Fri, 5 Nov 2010 11:49:42 +0000 (12:49 +0100)
committerMatthias Dieter Wallnöfer <mdw@samba.org>
Fri, 5 Nov 2010 12:31:28 +0000 (12:31 +0000)
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Fri Nov  5 12:31:28 UTC 2010 on sn-devel-104

source4/dsdb/samdb/ldb_modules/password_hash.c

index 2c7f4364d3cb6e43ee31717d93014f92267b09cf..7b0247922ee498535e3b607c4b69d4355db7d553 100644 (file)
@@ -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 {