summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
Diffstat (limited to 'source4')
-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 35fa2d21ca..121890771d 100644
--- a/source4/lib/ldb/common/ldb_modules.c
+++ b/source4/lib/ldb/common/ldb_modules.c
@@ -207,7 +207,7 @@ int ldb_module_connect_backend(struct ldb_context *ldb,
if (be == NULL) {
ldb_debug(ldb, LDB_DEBUG_FATAL,
- "Unable to find backend for '%s'", url);
+ "Unable to find backend for '%s' - do you need to set LDB_MODULES_PATH?", url);
return LDB_ERR_OTHER;
}
@@ -309,7 +309,7 @@ int ldb_module_load_list(struct ldb_context *ldb, const char **module_list,
ops = ldb_find_module_ops(module_list[i]);
if (ops == NULL) {
- ldb_debug(ldb, LDB_DEBUG_WARNING, "WARNING: Module [%s] not found",
+ ldb_debug(ldb, LDB_DEBUG_FATAL, "WARNING: Module [%s] not found - do you need to set LDB_MODULES_PATH?",
module_list[i]);
continue;
}