From fa165a688c5c05150fc51f286d30011b053f80ea Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 17 Jun 2005 07:03:32 +0000 Subject: r7677: fixed ldap server to honor 'private path' (This used to be commit f6abed5660ad8f7298eb2aebbaa25a8c355861a6) --- source4/ldap_server/ldap_rootdse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/ldap_server/ldap_rootdse.c b/source4/ldap_server/ldap_rootdse.c index 2c9f982a9a..2ceb14981b 100644 --- a/source4/ldap_server/ldap_rootdse.c +++ b/source4/ldap_server/ldap_rootdse.c @@ -92,7 +92,7 @@ static void *rootdse_db_connect(TALLOC_CTX *mem_ctx) ctx->static_ptr = &ctx; - db_path = talloc_asprintf(ctx, "tdb://%s/rootdse.ldb", dyn_PRIVATE_DIR); + db_path = talloc_asprintf(ctx, "tdb://%s", private_path(ctx, "rootdse.ldb")); if (db_path == NULL) { errno = ENOMEM; return NULL; -- cgit