aboutsummaryrefslogtreecommitdiff
path: root/util-linux/switch_root.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/switch_root.c')
-rw-r--r--util-linux/switch_root.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/util-linux/switch_root.c b/util-linux/switch_root.c
index 2d1802b79..947dd0cdc 100644
--- a/util-linux/switch_root.c
+++ b/util-linux/switch_root.c
@@ -39,6 +39,12 @@
39#include <sys/mount.h> 39#include <sys/mount.h>
40#if ENABLE_RUN_INIT 40#if ENABLE_RUN_INIT
41# include <sys/prctl.h> 41# include <sys/prctl.h>
42# ifndef PR_CAPBSET_READ
43# define PR_CAPBSET_READ 23
44# endif
45# ifndef PR_CAPBSET_DROP
46# define PR_CAPBSET_DROP 24
47# endif
42# include <linux/capability.h> 48# include <linux/capability.h>
43// #include <sys/capability.h> 49// #include <sys/capability.h>
44// This header is in libcap, but the functions are in libc. 50// This header is in libcap, but the functions are in libc.