From daa7443eba292ad83f0e112d28517dc5706ae15f Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 7 Feb 2024 00:01:24 -0600 Subject: [PATCH] fs_acl.cpp --- src/fs_acl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs_acl.cpp b/src/fs_acl.cpp index e3d6a7c0..1eb590d0 100644 --- a/src/fs_acl.cpp +++ b/src/fs_acl.cpp @@ -50,7 +50,7 @@ namespace fs int rv; int fd; - fd = fs::openat(fd_,relpath_.parent_path(),O_RDONLY|O_DIRECTORY); + fd = fs::openat(dirfd_,relpath_.parent_path(),O_RDONLY|O_DIRECTORY); if(fd < 0) return false;