From f3581f319fee956c3d8302eed15ec3fdfa948ec4 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 8 Oct 2007 11:13:36 +0000 Subject: r25569: move more idmap stuff into winbindd_idmap.c metze (This used to be commit 953229f040580071f6ee09413f67f7edd3227728) --- source3/winbindd/winbindd_idmap.c | 12 ++++++++++++ source3/winbindd/winbindd_sid.c | 12 ------------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/source3/winbindd/winbindd_idmap.c b/source3/winbindd/winbindd_idmap.c index 3ae88c4c5d..608948787e 100644 --- a/source3/winbindd/winbindd_idmap.c +++ b/source3/winbindd/winbindd_idmap.c @@ -37,6 +37,18 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_WINBIND +static struct winbindd_child static_idmap_child; + +void init_idmap_child(void) +{ + setup_domain_child(NULL, &static_idmap_child, "idmap"); +} + +struct winbindd_child *idmap_child(void) +{ + return &static_idmap_child; +} + static void winbindd_set_mapping_recv(TALLOC_CTX *mem_ctx, BOOL success, struct winbindd_response *response, void *c, void *private_data) diff --git a/source3/winbindd/winbindd_sid.c b/source3/winbindd/winbindd_sid.c index 48e84d35e5..b607db2b19 100644 --- a/source3/winbindd/winbindd_sid.c +++ b/source3/winbindd/winbindd_sid.c @@ -152,18 +152,6 @@ void winbindd_lookuprids(struct winbindd_cli_state *state) sendto_domain(state, domain); } -static struct winbindd_child static_idmap_child; - -void init_idmap_child(void) -{ - setup_domain_child(NULL, &static_idmap_child, "idmap"); -} - -struct winbindd_child *idmap_child(void) -{ - return &static_idmap_child; -} - /* Convert a sid to a uid. We assume we only have one rid attached to the sid. */ -- cgit