Magellan Linux

Contents of /tags/mkinitrd-6_1_12/busybox/selinux/selinuxenabled.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 939 - (show annotations) (download)
Tue Nov 17 21:24:51 2009 UTC (14 years, 6 months ago) by niro
File MIME type: text/plain
File size: 322 byte(s)
tagged 'mkinitrd-6_1_12'
1 /*
2 * selinuxenabled
3 *
4 * Based on libselinux 1.33.1
5 * Port to BusyBox Hiroshi Shinji <shiroshi@my.email.ne.jp>
6 *
7 */
8 #include "libbb.h"
9
10 int selinuxenabled_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
11 int selinuxenabled_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12 {
13 return !is_selinux_enabled();
14 }