summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_domain.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-04-07 17:50:19 +0200
committerVolker Lendecke <vl@samba.org>2010-04-08 15:12:42 +0200
commit3d5732fc1392740c5147c39116e5853452d0dc54 (patch)
tree20624b911eb17954b4ee2b4fb4af96c00f3f251a /source3/winbindd/winbindd_domain.c
parent16deed7199b837f2d8982045edbdae4e3af13afa (diff)
downloadsamba-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_domain.c')
-rw-r--r--source3/winbindd/winbindd_domain.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/winbindd/winbindd_domain.c b/source3/winbindd/winbindd_domain.c
index 2cb6e31a9e..4689b5f5db 100644
--- a/source3/winbindd/winbindd_domain.c
+++ b/source3/winbindd/winbindd_domain.c
@@ -79,9 +79,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);
}