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/pending/tcpsvd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/pending/tcpsvd.c') diff --git a/toys/pending/tcpsvd.c b/toys/pending/tcpsvd.c index 585ae733..16110e53 100644 --- a/toys/pending/tcpsvd.c +++ b/toys/pending/tcpsvd.c @@ -392,7 +392,7 @@ void tcpsvd_main(void) close(1); dup2(newfd, 0); dup2(newfd, 1); - xexec_optargs(2); //skip IP PORT + xexec(toys.optargs+2); //skip IP PORT } else { insert(&pids, pid, addr); xclose(newfd); //close and reopen for next client. -- cgit v1.2.3