Changeset 745 for trunk/server/source3/libsmb/trustdom_cache.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/libsmb/trustdom_cache.c
r414 r745 21 21 22 22 #include "includes.h" 23 #include "../libcli/security/security.h" 23 24 24 25 #undef DBGC_CLASS … … 96 97 **/ 97 98 98 bool trustdom_cache_store(char* name, char* alt_name, const DOM_SID*sid,99 bool trustdom_cache_store(char* name, char* alt_name, const struct dom_sid *sid, 99 100 time_t timeout) 100 101 { … … 142 143 **/ 143 144 144 bool trustdom_cache_fetch(const char* name, DOM_SID* sid)145 bool trustdom_cache_fetch(const char* name, struct dom_sid* sid) 145 146 { 146 147 char *key = NULL, *value = NULL; … … 165 166 } 166 167 167 /* convert sid string representation into DOM_SIDstructure */168 /* convert sid string representation into struct dom_sid structure */ 168 169 if(! string_to_sid(sid, value)) { 169 170 sid = NULL; … … 253 254 { 254 255 char **domain_names; 255 DOM_SID*dom_sids;256 struct dom_sid *dom_sids; 256 257 uint32 num_domains; 257 258 uint32 last_check;
Note:
See TracChangeset
for help on using the changeset viewer.