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/winbindd_check_machine_acct.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/winbindd/winbindd_check_machine_acct.c') diff --git a/source3/winbindd/winbindd_check_machine_acct.c b/source3/winbindd/winbindd_check_machine_acct.c index 57595c18e0..65a975002b 100644 --- a/source3/winbindd/winbindd_check_machine_acct.c +++ b/source3/winbindd/winbindd_check_machine_acct.c @@ -61,8 +61,8 @@ struct tevent_req *winbindd_check_machine_acct_send(TALLOC_CTX *mem_ctx, return tevent_req_post(req, ev); } - subreq = rpccli_wbint_CheckMachineAccount_send(state, ev, - domain->child.rpccli); + subreq = dcerpc_wbint_CheckMachineAccount_send(state, ev, + domain->child.binding_handle); if (tevent_req_nomem(subreq, req)) { return tevent_req_post(req, ev); } @@ -78,7 +78,7 @@ static void winbindd_check_machine_acct_done(struct tevent_req *subreq) req, struct winbindd_check_machine_acct_state); NTSTATUS status, result; - status = rpccli_wbint_CheckMachineAccount_recv(subreq, state, &result); + status = dcerpc_wbint_CheckMachineAccount_recv(subreq, state, &result); if (!NT_STATUS_IS_OK(status)) { tevent_req_nterror(req, status); return; -- cgit