summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_allocate_uid.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/winbindd/winbindd_allocate_uid.c')
-rw-r--r--source3/winbindd/winbindd_allocate_uid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_allocate_uid.c b/source3/winbindd/winbindd_allocate_uid.c
index 171d0ccb91..b949b4a860 100644
--- a/source3/winbindd/winbindd_allocate_uid.c
+++ b/source3/winbindd/winbindd_allocate_uid.c
@@ -46,7 +46,7 @@ struct tevent_req *winbindd_allocate_uid_send(TALLOC_CTX *mem_ctx,
child = idmap_child();
- subreq = rpccli_wbint_AllocateUid_send(state, ev, child->rpccli,
+ subreq = dcerpc_wbint_AllocateUid_send(state, ev, child->binding_handle,
&state->uid);
if (tevent_req_nomem(subreq, req)) {
return tevent_req_post(req, ev);
@@ -63,7 +63,7 @@ static void winbindd_allocate_uid_done(struct tevent_req *subreq)
req, struct winbindd_allocate_uid_state);
NTSTATUS status, result;
- status = rpccli_wbint_AllocateUid_recv(subreq, state, &result);
+ status = dcerpc_wbint_AllocateUid_recv(subreq, state, &result);
TALLOC_FREE(subreq);
if (!NT_STATUS_IS_OK(status)) {
tevent_req_nterror(req, status);