diff options
author | Günther Deschner <gd@samba.org> | 2010-04-23 12:17:04 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-04-23 12:17:25 +0200 |
commit | 4b1dab5b11d77d9fcac0ff5541ae5713db9106ec (patch) | |
tree | 12b6f73c86d73793dc9250c34b1a93e0194cf25c | |
parent | ca0e5ea8331857bca5207105c6bb4b6aaa8edadb (diff) | |
download | samba-4b1dab5b11d77d9fcac0ff5541ae5713db9106ec.tar.gz samba-4b1dab5b11d77d9fcac0ff5541ae5713db9106ec.tar.bz2 samba-4b1dab5b11d77d9fcac0ff5541ae5713db9106ec.zip |
s3-winbind: fix setup_domain_child() callers.
Volker, please check.
Guenther
-rw-r--r-- | source3/winbindd/winbindd_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c index a13df1f157..0209a31803 100644 --- a/source3/winbindd/winbindd_util.c +++ b/source3/winbindd/winbindd_util.c @@ -429,7 +429,7 @@ static void rescan_forest_root_trusts( void ) &cache_methods, &dom_list[i].sid ); if (d != NULL) { - setup_domain_child(d, &d->child); + setup_domain_child(d); } } @@ -501,7 +501,7 @@ static void rescan_forest_trusts( void ) &cache_methods, &dom_list[i].sid ); if (d != NULL) { - setup_domain_child(d, &d->child); + setup_domain_child(d); } } |