From 6c4f4b2aca3c73a6b907930eb240d78e6c04d935 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Wed, 7 Feb 2024 00:01:04 -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 bd8efbfe..120477ac 100644 --- a/src/fs_acl.cpp +++ b/src/fs_acl.cpp @@ -54,7 +54,7 @@ namespace fs if(fd < 0) return false; - rv = fs::fgetxattr(fd,relpath_,POSIX_ACL_DEFAULT_XATTR,NULL,0); + rv = fs::fgetxattr(fd,POSIX_ACL_DEFAULT_XATTR,NULL,0); return (rv != -1); }