Changeset 740 for vendor/current/source3/utils/netlookup.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/utils/netlookup.c
r414 r740 22 22 #include "includes.h" 23 23 #include "utils/net.h" 24 #include "rpc_client/cli_pipe.h" 25 #include "../librpc/gen_ndr/ndr_lsa.h" 26 #include "rpc_client/cli_lsarpc.h" 27 #include "libsmb/libsmb.h" 24 28 25 29 /******************************************************** … … 108 112 #endif 109 113 0, 110 Undefined, 111 NULL); 114 Undefined); 112 115 113 116 if (!NT_STATUS_IS_OK(nt_status)) { … … 156 159 NTSTATUS net_lookup_name_from_sid(struct net_context *c, 157 160 TALLOC_CTX *ctx, 158 DOM_SID*psid,161 struct dom_sid *psid, 159 162 const char **ppdomain, 160 163 const char **ppname) … … 198 201 199 202 NTSTATUS net_lookup_sid_from_name(struct net_context *c, TALLOC_CTX *ctx, 200 const char *full_name, DOM_SID*pret_sid)203 const char *full_name, struct dom_sid *pret_sid) 201 204 { 202 205 NTSTATUS nt_status; 203 206 struct con_struct *csp = NULL; 204 DOM_SID*sids = NULL;207 struct dom_sid *sids = NULL; 205 208 enum lsa_SidType *types = NULL; 206 209
Note:
See TracChangeset
for help on using the changeset viewer.