summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>2019-04-01 10:25:28 +1300
committerAndrew Bartlett <abartlet@samba.org>2019-04-05 04:41:25 +0000
commitc5f7b07ad28e18f48badf22df55f0411ebc86ddc (patch)
tree10b2904dca92fb500fb265c569bad9a79fbbfdd0 /source4
parent927a5e3c9db28258433da29d4d5c6f17c3e19448 (diff)
downloadsamba-c5f7b07ad28e18f48badf22df55f0411ebc86ddc.tar.gz
dsdb/modules: minor comment typos in samba_dsdb
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r--source4/dsdb/samdb/ldb_modules/samba_dsdb.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/samba_dsdb.c b/source4/dsdb/samdb/ldb_modules/samba_dsdb.c
index e08891a2fda..95967c33e12 100644
--- a/source4/dsdb/samdb/ldb_modules/samba_dsdb.c
+++ b/source4/dsdb/samdb/ldb_modules/samba_dsdb.c
@@ -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);