diff options
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/nice.c | 2 | ||||
-rw-r--r-- | toys/posix/nohup.c | 2 | ||||
-rw-r--r-- | toys/posix/time.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/toys/posix/nice.c b/toys/posix/nice.c index bc25d358..4b587ee6 100644 --- a/toys/posix/nice.c +++ b/toys/posix/nice.c @@ -34,5 +34,5 @@ void nice_main(void) errno = 0; if (nice(TT.priority)==-1 && errno) perror_exit("Can't set priority"); - xexec_optargs(0); + xexec(toys.optargs); } diff --git a/toys/posix/nohup.c b/toys/posix/nohup.c index df264da2..658ab939 100644 --- a/toys/posix/nohup.c +++ b/toys/posix/nohup.c @@ -38,5 +38,5 @@ void nohup_main(void) close(0); open("/dev/null", O_RDONLY); } - xexec_optargs(0); + xexec(toys.optargs); } diff --git a/toys/posix/time.c b/toys/posix/time.c index 01592052..01da9711 100644 --- a/toys/posix/time.c +++ b/toys/posix/time.c @@ -27,7 +27,7 @@ void time_main(void) struct timeval tv, tv2; gettimeofday(&tv, NULL); - if (!(pid = xfork())) xexec_optargs(0); + if (!(pid = xfork())) xexec(toys.optargs); else { int stat; struct rusage ru; |