From 13c744fa30b94e6ab4321c69a8a3d01ef42845d7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 12 Aug 2010 15:13:54 +0200 Subject: s3:winbindd: use dcerpc_wbint_* functions instead of rpccli_wbint_* metze --- source3/winbindd/wb_next_grent.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/winbindd/wb_next_grent.c') diff --git a/source3/winbindd/wb_next_grent.c b/source3/winbindd/wb_next_grent.c index d05370038b..523f8cda8a 100644 --- a/source3/winbindd/wb_next_grent.c +++ b/source3/winbindd/wb_next_grent.c @@ -69,8 +69,8 @@ struct tevent_req *wb_next_grent_send(TALLOC_CTX *mem_ctx, tevent_req_nterror(req, NT_STATUS_NO_MORE_ENTRIES); return tevent_req_post(req, ev); } - subreq = rpccli_wbint_QueryGroupList_send( - state, state->ev, state->gstate->domain->child.rpccli, + subreq = dcerpc_wbint_QueryGroupList_send( + state, state->ev, state->gstate->domain->child.binding_handle, &state->next_groups); if (tevent_req_nomem(subreq, req)) { return tevent_req_post(req, ev); @@ -98,7 +98,7 @@ static void wb_next_grent_fetch_done(struct tevent_req *subreq) req, struct wb_next_grent_state); NTSTATUS status, result; - status = rpccli_wbint_QueryGroupList_recv(subreq, state, &result); + status = dcerpc_wbint_QueryGroupList_recv(subreq, state, &result); TALLOC_FREE(subreq); if (!NT_STATUS_IS_OK(status) || !NT_STATUS_IS_OK(result)) { /* Ignore errors here, just log it */ @@ -125,8 +125,8 @@ static void wb_next_grent_fetch_done(struct tevent_req *subreq) tevent_req_nterror(req, NT_STATUS_NO_MORE_ENTRIES); return; } - subreq = rpccli_wbint_QueryGroupList_send( - state, state->ev, state->gstate->domain->child.rpccli, + subreq = dcerpc_wbint_QueryGroupList_send( + state, state->ev, state->gstate->domain->child.binding_handle, &state->next_groups); if (tevent_req_nomem(subreq, req)) { return; -- cgit