diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-20 02:00:49 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-20 02:00:49 +0000 |
commit | 2edbc2ab85b96fb01a3862db09df12f40d4382cd (patch) | |
tree | 0637a680a89fb11a986e59657875adda2546ec18 /include | |
parent | aa7a888e423fc85daa8af0ac3aabe8fc7af86312 (diff) | |
download | busybox-2edbc2ab85b96fb01a3862db09df12f40d4382cd.tar.gz |
ping: fix breakage from -I fix
passwd: SELinux support by KaiGai Kohei <kaigai@ak.jp.nec.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index af385e232..71f439fa9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -44,6 +44,8 @@ #if ENABLE_SELINUX #include <selinux/selinux.h> #include <selinux/context.h> +#include <selinux/flask.h> +#include <selinux/av_permissions.h> #endif #if ENABLE_LOCALE_SUPPORT @@ -818,6 +820,9 @@ extern void set_current_security_context(security_context_t sid); extern context_t set_security_context_component(security_context_t cur_context, char *user, char *role, char *type, char *range); extern void setfscreatecon_or_die(security_context_t scontext); +extern void selinux_preserve_fcontext(int fdesc); +#else +#define selinux_preserve_fcontext(fdesc) ((void)0) #endif extern void selinux_or_die(void); extern int restricted_shell(const char *shell); |