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/libsmb/trustdom_cache.c

    r414 r745  
    2121
    2222#include "includes.h"
     23#include "../libcli/security/security.h"
    2324
    2425#undef DBGC_CLASS
     
    9697 **/
    9798 
    98 bool trustdom_cache_store(char* name, char* alt_name, const DOM_SID *sid,
     99bool trustdom_cache_store(char* name, char* alt_name, const struct dom_sid *sid,
    99100                          time_t timeout)
    100101{
     
    142143 **/
    143144
    144 bool trustdom_cache_fetch(const char* name, DOM_SID* sid)
     145bool trustdom_cache_fetch(const char* name, struct dom_sid* sid)
    145146{
    146147        char *key = NULL, *value = NULL;
     
    165166        }
    166167
    167         /* convert sid string representation into DOM_SID structure */
     168        /* convert sid string representation into struct dom_sid structure */
    168169        if(! string_to_sid(sid, value)) {
    169170                sid = NULL;
     
    253254{
    254255        char **domain_names;
    255         DOM_SID *dom_sids;
     256        struct dom_sid *dom_sids;
    256257        uint32 num_domains;
    257258        uint32 last_check;
Note: See TracChangeset for help on using the changeset viewer.