From 9d49945ff037e46f5083dc88816acafc2343a77c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 18 Oct 2011 11:30:52 +1100 Subject: ldb: Output more error information when a connect fails --- lib/ldb/ldb_tdb/ldb_tdb.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/ldb/ldb_tdb') diff --git a/lib/ldb/ldb_tdb/ldb_tdb.c b/lib/ldb/ldb_tdb/ldb_tdb.c index 3630a18594..a85e41d987 100644 --- a/lib/ldb/ldb_tdb/ldb_tdb.c +++ b/lib/ldb/ldb_tdb/ldb_tdb.c @@ -1499,6 +1499,8 @@ static int ltdb_connect(struct ldb_context *ldb, const char *url, tdb_flags, open_flags, ldb_get_create_perms(ldb), ldb); if (!ltdb->tdb) { + ldb_asprintf_errstring(ldb, + "Unable to open tdb '%s'", path); ldb_debug(ldb, LDB_DEBUG_ERROR, "Unable to open tdb '%s'", path); talloc_free(ltdb); @@ -1513,6 +1515,7 @@ static int ltdb_connect(struct ldb_context *ldb, const char *url, module = ldb_module_new(ldb, ldb, "ldb_tdb backend", <db_ops); if (!module) { + ldb_oom(ldb); talloc_free(ltdb); return LDB_ERR_OPERATIONS_ERROR; } @@ -1520,6 +1523,8 @@ static int ltdb_connect(struct ldb_context *ldb, const char *url, talloc_steal(module, ltdb); if (ltdb_cache_load(module) != 0) { + ldb_asprintf_errstring(ldb, + "Unable to load ltdb cache records of tdb '%s'", path); talloc_free(module); return LDB_ERR_OPERATIONS_ERROR; } -- cgit