Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/lib/access.c

    r740 r988  
    66
    77   The code has been considerably changed from the original. Bug reports
    8    should be sent to samba@samba.org
     8   should be sent to samba-technical@lists.samba.org
    99
    1010   Updated for IPv6 by Jeremy Allison (C) 2007.
     
    1212
    1313#include "includes.h"
    14 #include "memcache.h"
    15 #include "interfaces.h"
     14#include "../lib/util/memcache.h"
     15#include "lib/socket/interfaces.h"
    1616
    1717#define NAME_INDEX 0
     
    182182bool client_match(const char *tok, const void *item)
    183183{
    184         const char **client = (const char **)item;
     184        const char **client = discard_const_p(const char *, item);
    185185        const char *tok_addr = tok;
    186186        const char *cli_addr = client[ADDR_INDEX];
Note: See TracChangeset for help on using the changeset viewer.