From c0045207a7cd3bc11aace920d895c69b027c16af Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 7 Feb 2015 16:17:44 -0600 Subject: Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs(). --- toys/other/timeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/other/timeout.c') diff --git a/toys/other/timeout.c b/toys/other/timeout.c index f8acabf5..3824376a 100644 --- a/toys/other/timeout.c +++ b/toys/other/timeout.c @@ -60,7 +60,7 @@ void timeout_main(void) if (TT.s_signal && -1 == (TT.nextsig = sig_to_num(TT.s_signal))) error_exit("bad -s: '%s'", TT.s_signal); - if (!(TT.pid = xfork())) xexec_optargs(1); + if (!(TT.pid = xfork())) xexec(toys.optargs+1); else { int status; -- cgit v1.2.3