s3:idmap_tdb: move idmap_tdb_init_hwm up.
[amitay/samba.git] / source3 / winbindd / winbindd_domain.c
index 40e38017ccfb41c6f6903b7b0c99f9affd7c8042..d82db19adc570742509b9bc4b8c3515f52c5478f 100644 (file)
@@ -62,10 +62,6 @@ static const struct winbindd_child_dispatch_table domain_dispatch_table[] = {
                .name           = "PAM_CHAUTHTOK",
                .struct_cmd     = WINBINDD_PAM_CHAUTHTOK,
                .struct_fn      = winbindd_dual_pam_chauthtok,
-       },{
-               .name           = "CCACHE_NTLM_AUTH",
-               .struct_cmd     = WINBINDD_CCACHE_NTLMAUTH,
-               .struct_fn      = winbindd_dual_ccache_ntlm_auth,
        },{
                .name           = "NDRCMD",
                .struct_cmd     = WINBINDD_DUAL_NDRCMD,
@@ -75,11 +71,8 @@ static const struct winbindd_child_dispatch_table domain_dispatch_table[] = {
        }
 };
 
-void setup_domain_child(struct winbindd_domain *domain,
-                       struct winbindd_child *child)
+void setup_domain_child(struct winbindd_domain *domain)
 {
-       setup_child(domain, child, domain_dispatch_table,
+       setup_child(domain, &domain->child, domain_dispatch_table,
                    "log.wb", domain->name);
-
-       child->domain = domain;
 }