Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/winbindd/wb_lookupsid.c

    r414 r745  
    2020#include "includes.h"
    2121#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"
    2324
    2425struct wb_lookupsid_state {
     
    5556        }
    5657
    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),
    5960                &state->sid, &state->type, &state->domname, &state->name);
    6061        if (tevent_req_nomem(subreq, req)) {
     
    7475        NTSTATUS status, result;
    7576
    76         status = rpccli_wbint_LookupSid_recv(subreq, state, &result);
     77        status = dcerpc_wbint_LookupSid_recv(subreq, state, &result);
    7778        TALLOC_FREE(subreq);
    78         if (!NT_STATUS_IS_OK(status)) {
    79                 tevent_req_nterror(req, status);
     79        if (tevent_req_nterror(req, status)) {
    8080                return;
    8181        }
     
    9595        state->lookup_domain = forest_root;
    9696
    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),
    9999                &state->sid, &state->type, &state->domname, &state->name);
    100100        if (tevent_req_nomem(subreq, req)) {
Note: See TracChangeset for help on using the changeset viewer.