From d0229d1d821ad022a455df12eaa27d7caf51d146 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 4 Apr 2016 14:22:31 +0200 Subject: [PATCH] fix O_PATH value --- src/PVE/Tools.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Tools.pm b/src/PVE/Tools.pm index 1d1f4b8..d6b501e 100644 --- a/src/PVE/Tools.pm +++ b/src/PVE/Tools.pm @@ -75,7 +75,7 @@ use constant {CLONE_NEWNS => 0x00020000, CLONE_NEWPID => 0x20000000, CLONE_NEWNET => 0x40000000}; -use constant O_PATH => 0x10000000; +use constant O_PATH => 0x00200000; sub run_with_timeout { my ($timeout, $code, @param) = @_; -- 2.39.2