ip link: add VLAN support
[oweals/busybox.git] / selinux / setenforce.c
index 59b1b0fca85efc70db1d77ad535e9f04ccf879fb..c5bc0a5a69c79b3f89a208cd43d9510bd55e9e12 100644 (file)
@@ -4,8 +4,13 @@
  * Based on libselinux 1.33.1
  * Port to BusyBox  Hiroshi Shinji <shiroshi@my.email.ne.jp>
  *
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 
+//usage:#define setenforce_trivial_usage
+//usage:       "[Enforcing | Permissive | 1 | 0]"
+//usage:#define setenforce_full_usage ""
+
 #include "libbb.h"
 
 /* These strings are arranged so that odd ones
@@ -19,12 +24,12 @@ static const char *const setenforce_cmd[] = {
        NULL,
 };
 
-int setenforce_main(int argc, char **argv);
-int setenforce_main(int argc, char **argv)
+int setenforce_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
+int setenforce_main(int argc UNUSED_PARAM, char **argv)
 {
        int i, rc;
 
-       if (argc != 2)
+       if (!argv[1] || argv[2])
                bb_show_usage();
 
        selinux_or_die();