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_getpwsid.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_getpwsid_state {
     
    7475        status = wb_queryuser_recv(subreq, state, &state->userinfo);
    7576        TALLOC_FREE(subreq);
    76         if (!NT_STATUS_IS_OK(status)) {
    77                 tevent_req_nterror(req, status);
     77        if (tevent_req_nterror(req, status)) {
    7878                return;
    7979        }
     
    118118                                   &state->userinfo->acct_name);
    119119        TALLOC_FREE(subreq);
    120         if (!NT_STATUS_IS_OK(status)) {
    121                 tevent_req_nterror(req, status);
     120        if (tevent_req_nterror(req, status)) {
    122121                return;
    123122        }
     
    137136
    138137        status = wb_fill_pwent_recv(subreq);
    139         if (!NT_STATUS_IS_OK(status)) {
    140                 tevent_req_nterror(req, status);
     138        if (tevent_req_nterror(req, status)) {
    141139                return;
    142140        }
Note: See TracChangeset for help on using the changeset viewer.