Changeset 745 for trunk/server/source3/winbindd/wb_lookupsid.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source3/winbindd/wb_lookupsid.c
r414 r745 20 20 #include "includes.h" 21 21 #include "winbindd.h" 22 #include "librpc/gen_ndr/cli_wbint.h" 22 #include "librpc/gen_ndr/ndr_wbint_c.h" 23 #include "../libcli/security/security.h" 23 24 24 25 struct wb_lookupsid_state { … … 55 56 } 56 57 57 subreq = rpccli_wbint_LookupSid_send(58 state, ev, state->lookup_domain->child.rpccli,58 subreq = dcerpc_wbint_LookupSid_send( 59 state, ev, dom_child_handle(state->lookup_domain), 59 60 &state->sid, &state->type, &state->domname, &state->name); 60 61 if (tevent_req_nomem(subreq, req)) { … … 74 75 NTSTATUS status, result; 75 76 76 status = rpccli_wbint_LookupSid_recv(subreq, state, &result);77 status = dcerpc_wbint_LookupSid_recv(subreq, state, &result); 77 78 TALLOC_FREE(subreq); 78 if (!NT_STATUS_IS_OK(status)) { 79 tevent_req_nterror(req, status); 79 if (tevent_req_nterror(req, status)) { 80 80 return; 81 81 } … … 95 95 state->lookup_domain = forest_root; 96 96 97 subreq = rpccli_wbint_LookupSid_send(98 state, state->ev, state->lookup_domain->child.rpccli,97 subreq = dcerpc_wbint_LookupSid_send( 98 state, state->ev, dom_child_handle(state->lookup_domain), 99 99 &state->sid, &state->type, &state->domname, &state->name); 100 100 if (tevent_req_nomem(subreq, req)) {
Note:
See TracChangeset
for help on using the changeset viewer.