Changeset 745 for trunk/server/source3/winbindd/winbindd_reconnect.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_reconnect.c
r429 r745 94 94 TALLOC_CTX *mem_ctx, 95 95 uint32 *num_entries, 96 struct acct_info **info)96 struct wb_acct_info **info) 97 97 { 98 98 NTSTATUS result; … … 112 112 TALLOC_CTX *mem_ctx, 113 113 uint32 *num_entries, 114 struct acct_info **info)114 struct wb_acct_info **info) 115 115 { 116 116 NTSTATUS result; … … 132 132 const char *name, 133 133 uint32_t flags, 134 DOM_SID*sid,134 struct dom_sid *sid, 135 135 enum lsa_SidType *type) 136 136 { … … 153 153 static NTSTATUS sid_to_name(struct winbindd_domain *domain, 154 154 TALLOC_CTX *mem_ctx, 155 const DOM_SID*sid,155 const struct dom_sid *sid, 156 156 char **domain_name, 157 157 char **name, … … 172 172 static NTSTATUS rids_to_names(struct winbindd_domain *domain, 173 173 TALLOC_CTX *mem_ctx, 174 const DOM_SID*sid,174 const struct dom_sid *sid, 175 175 uint32 *rids, 176 176 size_t num_rids, … … 197 197 static NTSTATUS query_user(struct winbindd_domain *domain, 198 198 TALLOC_CTX *mem_ctx, 199 const DOM_SID*user_sid,199 const struct dom_sid *user_sid, 200 200 struct wbint_userinfo *user_info) 201 201 { … … 215 215 static NTSTATUS lookup_usergroups(struct winbindd_domain *domain, 216 216 TALLOC_CTX *mem_ctx, 217 const DOM_SID*user_sid,218 uint32 *num_groups, DOM_SID**user_gids)217 const struct dom_sid *user_sid, 218 uint32 *num_groups, struct dom_sid **user_gids) 219 219 { 220 220 NTSTATUS result; … … 234 234 static NTSTATUS lookup_useraliases(struct winbindd_domain *domain, 235 235 TALLOC_CTX *mem_ctx, 236 uint32 num_sids, const DOM_SID*sids,236 uint32 num_sids, const struct dom_sid *sids, 237 237 uint32 *num_aliases, uint32 **alias_rids) 238 238 { … … 256 256 static NTSTATUS lookup_groupmem(struct winbindd_domain *domain, 257 257 TALLOC_CTX *mem_ctx, 258 const DOM_SID*group_sid,258 const struct dom_sid *group_sid, 259 259 enum lsa_SidType type, 260 260 uint32 *num_names, 261 DOM_SID **sid_mem, char ***names,261 struct dom_sid **sid_mem, char ***names, 262 262 uint32 **name_types) 263 263 {
Note:
See TracChangeset
for help on using the changeset viewer.