diff options
Diffstat (limited to 'toys/other/setsid.c')
-rw-r--r-- | toys/other/setsid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/setsid.c b/toys/other/setsid.c index 59a1d78f..8f0a0647 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(toys.optargs); + xexec_optargs(0); } |