summaryrefslogtreecommitdiffstats
path: root/source/winbindd/winbindd_idmap.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-10-08 11:13:36 +0000
committerStefan Metzmacher <metze@sernet.de>2007-10-22 08:46:10 +0200
commit590954407b5badfb9d6b8fb55077dc6a520fb816 (patch)
treed690f272503b08e5f859e1dca683bb5129412874 /source/winbindd/winbindd_idmap.c
parenta1c354866c04a305aa28a287dc6c72db1aa845a9 (diff)
downloadsamba-590954407b5badfb9d6b8fb55077dc6a520fb816.tar.gz
samba-590954407b5badfb9d6b8fb55077dc6a520fb816.tar.xz
samba-590954407b5badfb9d6b8fb55077dc6a520fb816.zip
r25569: move more idmap stuff into winbindd_idmap.c
metze (cherry picked from commit 953229f040580071f6ee09413f67f7edd3227728)
Diffstat (limited to 'source/winbindd/winbindd_idmap.c')
-rw-r--r--source/winbindd/winbindd_idmap.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/winbindd/winbindd_idmap.c b/source/winbindd/winbindd_idmap.c
index 5f0243b2f48..1d6beb3778a 100644
--- a/source/winbindd/winbindd_idmap.c
+++ b/source/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)