comparison toys/other/chroot.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 144d5ba7d410
children
comparison
equal deleted inserted replaced
1675:435f91d71898 1676:cbb1aca81eca
18 void chroot_main(void) 18 void chroot_main(void)
19 { 19 {
20 char *binsh[] = {"/bin/sh", "-i", 0}; 20 char *binsh[] = {"/bin/sh", "-i", 0};
21 21
22 if (chdir(*toys.optargs) || chroot(".")) perror_exit("%s", *toys.optargs); 22 if (chdir(*toys.optargs) || chroot(".")) perror_exit("%s", *toys.optargs);
23 if (toys.optargs[1]) xexec_optargs(1); 23 if (toys.optargs[1]) xexec(toys.optargs+1);
24 else xexec(binsh); 24 else xexec(binsh);
25 } 25 }