summaryrefslogtreecommitdiff
path: root/source4/lib/db_wrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/db_wrap.c')
-rw-r--r--source4/lib/db_wrap.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/source4/lib/db_wrap.c b/source4/lib/db_wrap.c
index b000225bbf..c0240aa62d 100644
--- a/source4/lib/db_wrap.c
+++ b/source4/lib/db_wrap.c
@@ -83,7 +83,7 @@ struct ldb_context *ldb_wrap_connect(TALLOC_CTX *mem_ctx,
struct ldb_wrap *w;
int ret;
struct event_context *ev;
-
+ char *real_url = NULL;
for (w = ldb_list; w; w = w->next) {
if (strcmp(url, w->url) == 0) {
@@ -112,13 +112,21 @@ struct ldb_context *ldb_wrap_connect(TALLOC_CTX *mem_ctx,
talloc_free(ldb);
return NULL;
}
+
+ real_url = private_path(ldb, url);
+ if (real_url == NULL) {
+ talloc_free(ldb);
+ return NULL;
+ }
- ret = ldb_connect(ldb, url, flags, options);
+ ret = ldb_connect(ldb, real_url, flags, options);
if (ret == -1) {
talloc_free(ldb);
return NULL;
}
+ talloc_free(real_url);
+
w = talloc(ldb, struct ldb_wrap);
if (w == NULL) {
talloc_free(ldb);