dsdb/modules: minor comment typos in samba_dsdb
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Sun, 31 Mar 2019 21:25:28 +0000 (10:25 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 5 Apr 2019 04:41:25 +0000 (04:41 +0000)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/dsdb/samdb/ldb_modules/samba_dsdb.c

index e08891a2fdae28877acc3d7b5c6cb26e3af36557..95967c33e126719e6eb3eb9f693acde3d9ce8c63 100644 (file)
@@ -600,7 +600,8 @@ static int samba_dsdb_init(struct ldb_module *module)
 
        talloc_steal(ldb, partition_msg);
 
-       /* Now prepare the module chain.  Oddly, we must give it to ldb_load_modules_list in REVERSE */
+       /* Now prepare the module chain. Oddly, we must give it to
+        * ldb_module_load_list in REVERSE */
        for (len = 0; final_module_list[len]; len++) { /* noop */};
 
        reverse_module_list = talloc_array(tmp_ctx, const char *, len+1);
@@ -621,7 +622,8 @@ static int samba_dsdb_init(struct ldb_module *module)
        CHECK_LDB_RET(ret);
 
        talloc_free(tmp_ctx);
-       /* Set this as the 'next' module, so that we effectivly append it to module chain */
+       /* Set this as the 'next' module, so that we effectively append it to
+        * module chain */
        ldb_module_set_next(module, module_chain);
 
        ret = ldb_next_read_lock(module);