diff options
author | Günther Deschner <gd@samba.org> | 2008-02-01 11:24:01 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-01 12:29:35 +0100 |
commit | 482eaa8e5cccd716be07f5eb1536097452214790 (patch) | |
tree | 40e3cc02334a241afa42a53a831ca38890f89038 /source3/winbindd | |
parent | 481a7f957252e3639b87cd2a6cd6025f23d8fd05 (diff) | |
download | samba-482eaa8e5cccd716be07f5eb1536097452214790.tar.gz samba-482eaa8e5cccd716be07f5eb1536097452214790.tar.bz2 samba-482eaa8e5cccd716be07f5eb1536097452214790.zip |
Use rpccli_samr_OpenGroup() all over the place.
Guenther
(This used to be commit d019fc69a986937880121c2587d3fe37f995edae)
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_rpc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_rpc.c b/source3/winbindd/winbindd_rpc.c index 47a8d430b2..b8f1982868 100644 --- a/source3/winbindd/winbindd_rpc.c +++ b/source3/winbindd/winbindd_rpc.c @@ -700,8 +700,11 @@ static NTSTATUS lookup_groupmem(struct winbindd_domain *domain, if (!NT_STATUS_IS_OK(result)) return result; - result = rpccli_samr_open_group(cli, mem_ctx, &dom_pol, - des_access, group_rid, &group_pol); + result = rpccli_samr_OpenGroup(cli, mem_ctx, + &dom_pol, + des_access, + group_rid, + &group_pol); if (!NT_STATUS_IS_OK(result)) return result; |