Changeset 537
- Timestamp:
- Sep 23, 2018, 11:27:55 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r534 r537 1 2 4.3.1: 3 * fix compile failure on non-Linux systems (reported by Romain and Tim) 4 1 5 4.3.0: 2 6 * add support for /etc/subuid, /etc/subgid maps -
trunk/src/sh_subuid.c
r534 r537 23 23 #define FIL__ _("sh_subuid.c") 24 24 25 #if defined(__linux__)26 25 27 26 #include <sys/types.h> … … 33 32 #include <errno.h> 34 33 #include <limits.h> 34 35 #if defined(__linux__) 35 36 36 37 #include "samhain.h" … … 232 233 char * sh_get_subuid (unsigned long subuid) 233 234 { 235 (void) subuid; 234 236 return NULL; 235 237 } … … 237 239 char * sh_get_subgid (unsigned long subgid) 238 240 { 241 (void) subgid; 239 242 return NULL; 240 243 }
Note:
See TracChangeset
for help on using the changeset viewer.