From 4b1dab5b11d77d9fcac0ff5541ae5713db9106ec Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 23 Apr 2010 12:17:04 +0200 Subject: s3-winbind: fix setup_domain_child() callers. Volker, please check. Guenther --- source3/winbindd/winbindd_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/winbindd/winbindd_util.c') 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); } } -- cgit