bc: convert to "G trick" - this returns bc to zero bss increase
[oweals/busybox.git] / util-linux / fsfreeze.c
index 5c10c8044bb25e786d5bfe671811448e43630c8b..c485810aa02686b306a80c8e18a7057e5ba1810a 100644 (file)
@@ -4,7 +4,6 @@
  *
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
-
 //config:config FSFREEZE
 //config:      bool "fsfreeze (3.6 kb)"
 //config:      default y
@@ -13,7 +12,7 @@
 //config:      help
 //config:      Halt new accesses and flush writes on a mounted filesystem.
 
-//applet:IF_FSFREEZE(APPLET(fsfreeze, BB_DIR_USR_SBIN, BB_SUID_DROP))
+//applet:IF_FSFREEZE(APPLET_NOEXEC(fsfreeze, fsfreeze, BB_DIR_USR_SBIN, BB_SUID_DROP, fsfreeze))
 
 //kbuild:lib-$(CONFIG_FSFREEZE) += fsfreeze.o
 
@@ -36,15 +35,15 @@ int fsfreeze_main(int argc UNUSED_PARAM, char **argv)
        unsigned opts;
        int fd;
 
-       applet_long_options =
-               "freeze\0"   No_argument "\xff"
-               "unfreeze\0" No_argument "\xfe"
-       ;
        /* exactly one non-option arg: the mountpoint */
        /* one of opts is required */
        /* opts are mutually exclusive */
-       opt_complementary = "=1:""\xff:\xfe:""\xff--\xfe:\xfe--\xff";
-       opts = getopt32(argv, "");
+       opts = getopt32long(argv, "^"
+               "" /* no opts */
+               "\0" "=1:""\xff:\xfe:""\xff--\xfe:\xfe--\xff",
+               "freeze\0"   No_argument "\xff"
+               "unfreeze\0" No_argument "\xfe"
+       );
 
        fd = xopen(argv[optind], O_RDONLY);
        /* Works with NULL arg on linux-4.8.0 */