summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2016-06-20 21:50:26 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2016-06-20 21:50:26 (GMT)
commit7cf45ae10e71d11ca53e7b0220c76562a8045113 (patch)
tree079b2952fb7f85867d7b2057ff54a05a07bb0df7
parente24e88697af81800060efc75e67777ef245b15cd (diff)
downloadbusybox-7cf45ae10e71d11ca53e7b0220c76562a8045113.zip
busybox-7cf45ae10e71d11ca53e7b0220c76562a8045113.tar.gz
busybox-7cf45ae10e71d11ca53e7b0220c76562a8045113.tar.bz2
setsid: fix broken -c
This did not work: setsid sh -c 'anything' Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--miscutils/setsid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/setsid.c b/miscutils/setsid.c
index 1b27377..9bddc2f 100644
--- a/miscutils/setsid.c
+++ b/miscutils/setsid.c
@@ -29,7 +29,7 @@ int setsid_main(int argc UNUSED_PARAM, char **argv)
unsigned opt;
opt_complementary = "-1"; /* at least one arg */
- opt = getopt32(argv, "c");
+ opt = getopt32(argv, "+c"); /* +: stop on first non-opt */
argv += optind;
/* setsid() is allowed only when we are not a process group leader.