From f4a1083cf9f64b4d2b65b68942e93861409ea90f Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 2 Dec 2007 17:09:52 +0100 Subject: r26227: Make loadparm_context part of a server task, move loadparm_contexts further up the call stack. (This used to be commit 0721a07aada6a1fae6dcbd610b8783df57d7bbad) --- source4/dsdb/common/sidmap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/dsdb/common') diff --git a/source4/dsdb/common/sidmap.c b/source4/dsdb/common/sidmap.c index 46052ac2a0..8383d2b36b 100644 --- a/source4/dsdb/common/sidmap.c +++ b/source4/dsdb/common/sidmap.c @@ -27,6 +27,7 @@ #include "libcli/ldap/ldap.h" #include "util/util_ldb.h" #include "libcli/security/security.h" +#include "param/param.h" /* these are used for the fallback local uid/gid to sid mapping @@ -54,7 +55,7 @@ _PUBLIC_ struct sidmap_context *sidmap_open(TALLOC_CTX *mem_ctx) if (sidmap == NULL) { return NULL; } - sidmap->samctx = samdb_connect(sidmap, system_session(sidmap)); + sidmap->samctx = samdb_connect(sidmap, global_loadparm, system_session(sidmap)); if (sidmap->samctx == NULL) { talloc_free(sidmap); return NULL; -- cgit