aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chroot.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-28 15:18:53 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-28 15:18:53 +0100
commite992bae6f9adf3718c6263a36c004ead1c7272a8 (patch)
treef0bc9e4fa145f58ab3f9838902e09f9cfba29648 /coreutils/chroot.c
parent86cfb70ca5f2bde11f2d071bc59db75291d8552f (diff)
downloadbusybox-w32-e992bae6f9adf3718c6263a36c004ead1c7272a8.tar.gz
busybox-w32-e992bae6f9adf3718c6263a36c004ead1c7272a8.tar.bz2
busybox-w32-e992bae6f9adf3718c6263a36c004ead1c7272a8.zip
*: remove a few more cases of argc usage. -89 bytes.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/chroot.c')
-rw-r--r--coreutils/chroot.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index 9b3d70044..f7228a61a 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -12,18 +12,16 @@
12#include "libbb.h" 12#include "libbb.h"
13 13
14int chroot_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 14int chroot_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
15int chroot_main(int argc, char **argv) 15int chroot_main(int argc UNUSED_PARAM, char **argv)
16{ 16{
17 if (argc < 2) {
18 bb_show_usage();
19 }
20
21 ++argv; 17 ++argv;
18 if (!*argv)
19 bb_show_usage();
22 xchroot(*argv); 20 xchroot(*argv);
23 xchdir("/"); 21 xchdir("/");
24 22
25 ++argv; 23 ++argv;
26 if (argc == 2) { 24 if (!*argv) { /* no 2nd param (PROG), use shell */
27 argv -= 2; 25 argv -= 2;
28 argv[0] = getenv("SHELL"); 26 argv[0] = getenv("SHELL");
29 if (!argv[0]) { 27 if (!argv[0]) {