summaryrefslogtreecommitdiff
path: root/source4/param/secrets.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/param/secrets.c')
-rw-r--r--source4/param/secrets.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/source4/param/secrets.c b/source4/param/secrets.c
index c749d38bb2..308c5a607b 100644
--- a/source4/param/secrets.c
+++ b/source4/param/secrets.c
@@ -26,7 +26,6 @@
#include "param/param.h"
#include "system/filesys.h"
#include "tdb_wrap.h"
-#include "ldb_wrap.h"
#include "lib/ldb/include/ldb.h"
#include "lib/tdb/include/tdb.h"
#include "lib/util/util_tdb.h"
@@ -118,11 +117,18 @@ struct ldb_context *secrets_db_connect(TALLOC_CTX *mem_ctx)
/* Secrets.ldb *must* always be local. If we call for a
* system_session() we will recurse */
- ldb = ldb_wrap_connect(mem_ctx, global_loadparm, path, NULL, NULL, 0, NULL);
- talloc_free(path);
+ ldb = ldb_init(mem_ctx);
if (!ldb) {
+ talloc_free(path);
+ return NULL;
+ }
+
+ if (ldb_connect(ldb, path, 0, NULL) != 0) {
+ talloc_free(path);
return NULL;
}
+
+ talloc_free(path);
return ldb;
}