summaryrefslogtreecommitdiff
path: root/src/minutils/s6-chroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/minutils/s6-chroot.c')
-rw-r--r--src/minutils/s6-chroot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/minutils/s6-chroot.c b/src/minutils/s6-chroot.c
index 654ee8f..83a79b7 100644
--- a/src/minutils/s6-chroot.c
+++ b/src/minutils/s6-chroot.c
@@ -16,6 +16,5 @@ int main (int argc, char const *const *argv, char const *const *envp)
if (argc < 3) strerr_dieusage(100, USAGE) ;
if (chdir(argv[1]) == -1) strerr_diefu2sys(111, "chdir to ", argv[1]) ;
if (chroot(".") == -1) strerr_diefu2sys(111, "chroot in ", argv[1]) ;
- pathexec_run(argv[2], argv+2, envp) ;
- strerr_dieexec(111, argv[2]) ;
+ xpathexec_run(argv[2], argv+2, envp) ;
}