diff toys/posix/nohup.c @ 1676:cbb1aca81eca draft

Make toy_exec() check if argc is in optargs and deal with it there so we don't need a separate xexec_optargs().
author Rob Landley <rob@landley.net>
date Sat, 07 Feb 2015 16:17:44 -0600
parents e127aa575ff2
children c0ef9b7976f0
line wrap: on
line diff
--- a/toys/posix/nohup.c	Sat Feb 07 15:32:22 2015 -0600
+++ b/toys/posix/nohup.c	Sat Feb 07 16:17:44 2015 -0600
@@ -38,5 +38,5 @@
     close(0);
     open("/dev/null", O_RDONLY);
   }
-  xexec_optargs(0);
+  xexec(toys.optargs);
 }