Commit 72f919c4 by Stéphane Graber

conf.c: Cleanup __S_ISTYPE

__S_ISTYPE doesn't exist in all C libraries, so define it if it's missing. Additionaly, replace one occurence where it wasn't actually needed. Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com> Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent edaf8b1b
...@@ -166,6 +166,11 @@ return -1; ...@@ -166,6 +166,11 @@ return -1;
} }
#endif #endif
/* Define __S_ISTYPE if missing from the C library */
#ifndef __S_ISTYPE
#define __S_ISTYPE(mode, mask) (((mode) & S_IFMT) == (mask))
#endif
char *lxchook_names[NUM_LXC_HOOKS] = { char *lxchook_names[NUM_LXC_HOOKS] = {
"pre-start", "pre-mount", "mount", "start", "post-stop" }; "pre-start", "pre-mount", "mount", "start", "post-stop" };
...@@ -590,7 +595,7 @@ int pin_rootfs(const char *rootfs) ...@@ -590,7 +595,7 @@ int pin_rootfs(const char *rootfs)
return -1; return -1;
} }
if (!__S_ISTYPE(s.st_mode, S_IFDIR)) if (!S_ISDIR(s.st_mode))
return -2; return -2;
ret = snprintf(absrootfspin, MAXPATHLEN, "%s%s", absrootfs, ".hold"); ret = snprintf(absrootfspin, MAXPATHLEN, "%s%s", absrootfs, ".hold");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment