From 98e4393df926b600354ef16eb4eb19b5e11bf5c3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 23 Oct 2009 14:19:28 +1100 Subject: s4-dsdb: create a static system_session context This patch adds a system_session cache, preventing us from having to recreate it on every ldb open, and allowing us to detect when the same session is being used in ldb_wrap --- source4/torture/libnet/libnet_BecomeDC.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4/torture/libnet') diff --git a/source4/torture/libnet/libnet_BecomeDC.c b/source4/torture/libnet/libnet_BecomeDC.c index e1c4b751af..204b824779 100644 --- a/source4/torture/libnet/libnet_BecomeDC.c +++ b/source4/torture/libnet/libnet_BecomeDC.c @@ -317,8 +317,8 @@ static NTSTATUS test_apply_schema(struct test_become_dc_state *s, sam_ldb_path = talloc_asprintf(s, "%s/%s", s->targetdir, "private/sam.ldb"); DEBUG(0,("Reopen the SAM LDB with system credentials and a already stored schema: %s\n", sam_ldb_path)); s->ldb = ldb_wrap_connect(s, s->tctx->ev, s->tctx->lp_ctx, sam_ldb_path, - system_session(s, s->tctx->lp_ctx), - NULL, 0, NULL); + system_session(s->tctx->lp_ctx), + NULL, 0); if (!s->ldb) { DEBUG(0,("Failed to open '%s'\n", sam_ldb_path)); @@ -661,8 +661,8 @@ bool torture_net_become_dc(struct torture_context *torture) sam_ldb_path = talloc_asprintf(s, "%s/%s", s->targetdir, "private/sam.ldb"); DEBUG(0,("Reopen the SAM LDB with system credentials and all replicated data: %s\n", sam_ldb_path)); s->ldb = ldb_wrap_connect(s, s->tctx->ev, s->lp_ctx, sam_ldb_path, - system_session(s, s->lp_ctx), - NULL, 0, NULL); + system_session(s->lp_ctx), + NULL, 0); if (!s->ldb) { DEBUG(0,("Failed to open '%s'\n", sam_ldb_path)); -- cgit