aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/setsid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/setsid.c b/miscutils/setsid.c
index 1b27377b2..9bddc2fcf 100644
--- a/miscutils/setsid.c
+++ b/miscutils/setsid.c
@@ -29,7 +29,7 @@ int setsid_main(int argc UNUSED_PARAM, char **argv)
29 unsigned opt; 29 unsigned opt;
30 30
31 opt_complementary = "-1"; /* at least one arg */ 31 opt_complementary = "-1"; /* at least one arg */
32 opt = getopt32(argv, "c"); 32 opt = getopt32(argv, "+c"); /* +: stop on first non-opt */
33 argv += optind; 33 argv += optind;
34 34
35 /* setsid() is allowed only when we are not a process group leader. 35 /* setsid() is allowed only when we are not a process group leader.