Changeset 988 for vendor/current/source3/lib/access.c
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/lib/access.c
r740 r988 6 6 7 7 The code has been considerably changed from the original. Bug reports 8 should be sent to samba @samba.org8 should be sent to samba-technical@lists.samba.org 9 9 10 10 Updated for IPv6 by Jeremy Allison (C) 2007. … … 12 12 13 13 #include "includes.h" 14 #include " memcache.h"15 #include " interfaces.h"14 #include "../lib/util/memcache.h" 15 #include "lib/socket/interfaces.h" 16 16 17 17 #define NAME_INDEX 0 … … 182 182 bool client_match(const char *tok, const void *item) 183 183 { 184 const char **client = (const char **)item;184 const char **client = discard_const_p(const char *, item); 185 185 const char *tok_addr = tok; 186 186 const char *cli_addr = client[ADDR_INDEX];
Note:
See TracChangeset
for help on using the changeset viewer.