diff options
author | Volker Lendecke <vl@samba.org> | 2010-04-07 17:50:19 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-04-08 15:12:42 +0200 |
commit | 3d5732fc1392740c5147c39116e5853452d0dc54 (patch) | |
tree | 20624b911eb17954b4ee2b4fb4af96c00f3f251a /source3/winbindd/winbindd_util.c | |
parent | 16deed7199b837f2d8982045edbdae4e3af13afa (diff) | |
download | samba-3d5732fc1392740c5147c39116e5853452d0dc54.tar.gz samba-3d5732fc1392740c5147c39116e5853452d0dc54.tar.bz2 samba-3d5732fc1392740c5147c39116e5853452d0dc54.zip |
s3: Remove the separate "child" argument from setup_domain_child()
Diffstat (limited to 'source3/winbindd/winbindd_util.c')
-rw-r--r-- | source3/winbindd/winbindd_util.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c index 3e03f4091c..84522ea0a7 100644 --- a/source3/winbindd/winbindd_util.c +++ b/source3/winbindd/winbindd_util.c @@ -352,8 +352,7 @@ static void trustdom_recv(void *private_data, bool success) &cache_methods, &sid); if (domain) { - setup_domain_child(domain, - &domain->child); + setup_domain_child(domain); } } p=q; @@ -609,8 +608,7 @@ bool init_domain_list(void) domain = add_trusted_domain("BUILTIN", NULL, &builtin_passdb_methods, &global_sid_Builtin); if (domain) { - setup_domain_child(domain, - &domain->child); + setup_domain_child(domain); } /* Local SAM */ @@ -621,8 +619,7 @@ bool init_domain_list(void) if ( role != ROLE_DOMAIN_MEMBER ) { domain->primary = True; } - setup_domain_child(domain, - &domain->child); + setup_domain_child(domain); } /* Add ourselves as the first entry. */ @@ -639,8 +636,7 @@ bool init_domain_list(void) &cache_methods, &our_sid); if (domain) { domain->primary = True; - setup_domain_child(domain, - &domain->child); + setup_domain_child(domain); /* Even in the parent winbindd we'll need to talk to the DC, so try and see if we can @@ -691,8 +687,7 @@ void check_domain_trusted( const char *name, const DOM_SID *user_sid ) domain->internal = False; domain->online = True; - setup_domain_child(domain, - &domain->child); + setup_domain_child(domain); wcache_tdc_add_domain( domain ); |