tls: reorder a few more cipher ids
[oweals/busybox.git] / util-linux / setsid.c
index 60cab2fcf45d61ea6ad740b355e871f2acc69b10..8385a91158b7d6ea239ea3f05f163a5f1e0bc5cc 100644 (file)
@@ -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.