tls: reorder a few more cipher ids
[oweals/busybox.git] / util-linux / setsid.c
index 143a8f8fa60e317fdb59a0a85f18042d6c78406a..8385a91158b7d6ea239ea3f05f163a5f1e0bc5cc 100644 (file)
  * - busyboxed
  */
 //config:config SETSID
-//config:      bool "setsid"
+//config:      bool "setsid (3.9 kb)"
 //config:      default y
 //config:      help
-//config:        setsid runs a program in a new session
+//config:      setsid runs a program in a new session
 
 //applet:IF_SETSID(APPLET(setsid, BB_DIR_USR_BIN, BB_SUID_DROP))
 
@@ -37,8 +37,8 @@ int setsid_main(int argc UNUSED_PARAM, char **argv)
 {
        unsigned opt;
 
-       opt_complementary = "-1"; /* at least one arg */
-       opt = getopt32(argv, "+c"); /* +: stop on first non-opt */
+       /* +: stop on first non-opt */
+       opt = getopt32(argv, "^+" "c" "\0" "-1"/* at least one arg */);
        argv += optind;
 
        /* setsid() is allowed only when we are not a process group leader.