aboutsummaryrefslogtreecommitdiff
path: root/toys/other/setsid.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/setsid.c')
-rw-r--r--toys/other/setsid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/setsid.c b/toys/other/setsid.c
index 8f0a0647..59a1d78f 100644
--- a/toys/other/setsid.c
+++ b/toys/other/setsid.c
@@ -24,5 +24,5 @@ void setsid_main(void)
setpgid(0,0);
tcsetpgrp(0, getpid());
}
- xexec_optargs(0);
+ xexec(toys.optargs);
}