Changeset 740 for vendor/current/source3/winbindd/winbindd_getpwnam.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified vendor/current/source3/winbindd/winbindd_getpwnam.c ¶
r414 r740 20 20 #include "includes.h" 21 21 #include "winbindd.h" 22 #include "passdb/lookup_sid.h" /* only for LOOKUP_NAME_NO_NSS flag */ 22 23 23 24 struct winbindd_getpwnam_state { … … 100 101 status = wb_lookupname_recv(subreq, &state->sid, &state->type); 101 102 TALLOC_FREE(subreq); 102 if (!NT_STATUS_IS_OK(status)) { 103 tevent_req_nterror(req, status); 103 if (tevent_req_nterror(req, status)) { 104 104 return; 105 105 } … … 120 120 status = wb_getpwsid_recv(subreq); 121 121 TALLOC_FREE(subreq); 122 if (!NT_STATUS_IS_OK(status)) { 123 tevent_req_nterror(req, status); 122 if (tevent_req_nterror(req, status)) { 124 123 return; 125 124 }
Note:
See TracChangeset
for help on using the changeset viewer.