X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fchroot.c;h=fcd70f21a8bcfe9e07f3f449c592cde17ba96527;hb=ec1a4b5a521b5adf295bc757c25231910f8c854b;hp=16c743fef37e0172e0a28e9c93e80c44a70b0411;hpb=06af2165288cd6516b89001ec9e24992619230e0;p=oweals%2Fbusybox.git 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) argv[1] = (char *) "-i"; } - execvp(*argv, argv); + BB_EXECVP(*argv, argv); bb_perror_msg_and_die("cannot execute %s", *argv); }