]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
mdssvc: fix indentation
authorRalph Boehme <slow@samba.org>
Wed, 25 May 2022 15:23:53 +0000 (17:23 +0200)
committerNoel Power <npower@samba.org>
Tue, 12 Jul 2022 14:45:36 +0000 (14:45 +0000)
Bug: https://bugzilla.samba.org/show_bug.cgi?id=15086

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Noel Power <npower@samba.org>
source3/rpc_server/mdssvc/mdssvc.c

index 21212cb5c033a8c8b4c105143fdbf4749d85e8b7..c47d4cfc3996a272a74e914139a53d1a5025c4b3 100644 (file)
@@ -1628,18 +1628,18 @@ struct mds_ctx *mds_init_ctx(TALLOC_CTX *mem_ctx,
        }
 
        iconv_hnd = smb_iconv_open_ex(mds_ctx,
-                                                  "UTF8-NFD",
-                                                  "UTF8-NFC",
-                                                  false);
+                                     "UTF8-NFD",
+                                     "UTF8-NFC",
+                                     false);
        if (iconv_hnd == (smb_iconv_t)-1) {
                goto error;
        }
        mds_ctx->ic_nfc_to_nfd = iconv_hnd;
 
        iconv_hnd = smb_iconv_open_ex(mds_ctx,
-                                                  "UTF8-NFC",
-                                                  "UTF8-NFD",
-                                                  false);
+                                     "UTF8-NFC",
+                                     "UTF8-NFD",
+                                     false);
        if (iconv_hnd == (smb_iconv_t)-1) {
                goto error;
        }