diff options
author | Rob Landley <rob@landley.net> | 2015-02-07 16:17:44 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-02-07 16:17:44 -0600 |
commit | c0045207a7cd3bc11aace920d895c69b027c16af (patch) | |
tree | 5cee9d0fc3013c62800c0402f52f6f8cac9405cd /toys/posix/nohup.c | |
parent | a48cfba9520a8ad9bf1308dcbac3fc6ee23894ba (diff) | |
download | toybox-c0045207a7cd3bc11aace920d895c69b027c16af.tar.gz |
Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs().
Diffstat (limited to 'toys/posix/nohup.c')
-rw-r--r-- | toys/posix/nohup.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |