aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chroot.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-02-06 01:20:12 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-02-06 01:20:12 +0000
commite84333341b74188d901c2784f00b4c970b419be0 (patch)
treef3e2e2185d092f87843fe4bbc9d1098185a5bdbd /coreutils/chroot.c
parent25a67790a738b7155dc868979c211001148f616f (diff)
downloadbusybox-w32-e84333341b74188d901c2784f00b4c970b419be0.tar.gz
busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.tar.bz2
busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.zip
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
git-svn-id: svn://busybox.net/trunk/busybox@17785 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/chroot.c')
-rw-r--r--coreutils/chroot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index 16c743fef..fcd70f21a 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -33,6 +33,6 @@ int chroot_main(int argc, char **argv)
33 argv[1] = (char *) "-i"; 33 argv[1] = (char *) "-i";
34 } 34 }
35 35
36 execvp(*argv, argv); 36 BB_EXECVP(*argv, argv);
37 bb_perror_msg_and_die("cannot execute %s", *argv); 37 bb_perror_msg_and_die("cannot execute %s", *argv);
38} 38}