summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-08-20 00:22:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:02:16 -0500
commite10577585dae0807ff85a5b7ad1f640ea4ec3286 (patch)
treeacc44f3e758edb8d5c350fd49087fdbc77a47412 /source4/lib/ldb/common
parent97a118ded314b2f8f7e4a68cb77c41e3668203d0 (diff)
downloadsamba-e10577585dae0807ff85a5b7ad1f640ea4ec3286.tar.gz
samba-e10577585dae0807ff85a5b7ad1f640ea4ec3286.tar.bz2
samba-e10577585dae0807ff85a5b7ad1f640ea4ec3286.zip
r24566: Remove trailing newlines in ldb_debug(), these are not required.
Andrew Bartlett (This used to be commit 2ed782f7caa98003c524d70bcb97874002be57a2)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r--source4/lib/ldb/common/ldb_modules.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c
index ad537b4d86..2c9fba590a 100644
--- a/source4/lib/ldb/common/ldb_modules.c
+++ b/source4/lib/ldb/common/ldb_modules.c
@@ -328,7 +328,7 @@ int ldb_load_modules(struct ldb_context *ldb, const char *options[])
ret = ldb_search(ldb, mods_dn, LDB_SCOPE_BASE, "", attrs, &res);
talloc_steal(mods_dn, res);
if (ret == LDB_SUCCESS && (res->count == 0 || res->msgs[0]->num_elements == 0)) {
- ldb_debug(ldb, LDB_DEBUG_TRACE, "no modules required by the db\n");
+ ldb_debug(ldb, LDB_DEBUG_TRACE, "no modules required by the db");
} else {
if (ret != LDB_SUCCESS) {
ldb_debug(ldb, LDB_DEBUG_FATAL, "ldb error (%s) occurred searching for modules, bailing out\n", ldb_errstring(ldb));
@@ -356,7 +356,7 @@ int ldb_load_modules(struct ldb_context *ldb, const char *options[])
return ret;
}
} else {
- ldb_debug(ldb, LDB_DEBUG_TRACE, "No modules specified for this database\n");
+ ldb_debug(ldb, LDB_DEBUG_TRACE, "No modules specified for this database");
}
return ldb_init_module_chain(ldb, ldb->modules);