From 3a2487e66b85bcceba6d52881f7bc4810b757023 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 31 May 2010 11:55:18 +0200 Subject: s3:idmap: remove idmap_alloc_context from idmap.c The registering of alloc backends is being removed. The idmap backends are responsible for initializing their alloc code on their own if necessary. No list of alloc backends is maintained any more in the top level. --- source3/winbindd/idmap.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index 7da3656aa7..c547262d81 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -55,16 +55,6 @@ struct idmap_backend { }; static struct idmap_backend *backends = NULL; -/** - * The idmap alloc context that is configured via "idmap alloc - * backend". Defaults to "idmap backend" in case the module (tdb, ldap) also - * provides alloc methods. - */ -struct idmap_alloc_context { - struct idmap_alloc_methods *methods; -}; -static struct idmap_alloc_context *idmap_alloc_ctx = NULL; - /** * Default idmap domain configured via "idmap backend". */ @@ -453,10 +443,6 @@ static struct idmap_domain *idmap_find_domain(const char *domname) void idmap_close(void) { - if (idmap_alloc_ctx) { - idmap_alloc_ctx->methods->close_fn(); - idmap_alloc_ctx->methods = NULL; - } TALLOC_FREE(default_idmap_domain); TALLOC_FREE(passdb_idmap_domain); TALLOC_FREE(idmap_domains); -- cgit