commit 06b87021ce8d280ca339fae8dac80870941c1da7
parent ac572a8435d2152c99bbc95806e6ae5d83fd7276
Author: Friedel Schön <[email protected]>
Date: Mon, 22 May 2023 17:35:44 +0200
chpst, why chdir after chroot
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/exec/chpst.c b/src/exec/chpst.c
@@ -113,6 +113,7 @@ int main(int argc, char** argv) {
if (chroot(root) == -1)
print_error("unable to change root directory: %s\n");
+ // chdir to '/', otherwise the next command will complain 'directory not found'
chdir("/");
}
if (cd) {