Changeset 745 for trunk/server/source3/winbindd/winbindd_dsgetdcname.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/winbindd_dsgetdcname.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 23 24 24 struct winbindd_dsgetdcname_state { … … 68 68 child = locator_child(); 69 69 70 subreq = rpccli_wbint_DsGetDcName_send(71 state, ev, child-> rpccli,70 subreq = dcerpc_wbint_DsGetDcName_send( 71 state, ev, child->binding_handle, 72 72 request->data.dsgetdcname.domain_name, guid_ptr, 73 73 request->data.dsgetdcname.site_name, … … 88 88 NTSTATUS status, result; 89 89 90 status = rpccli_wbint_DsGetDcName_recv(subreq, state, &result);90 status = dcerpc_wbint_DsGetDcName_recv(subreq, state, &result); 91 91 TALLOC_FREE(subreq); 92 if ( !NT_STATUS_IS_OK(status)) {92 if (any_nt_status_not_ok(status, result, &status)) { 93 93 tevent_req_nterror(req, status); 94 return;95 }96 if (!NT_STATUS_IS_OK(result)) {97 tevent_req_nterror(req, result);98 94 return; 99 95 }
Note:
See TracChangeset
for help on using the changeset viewer.