From 3d50a302085da2a4c668f81f155971dfe4efd960 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Tue, 6 Feb 2024 23:57:44 -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 13c31b79..ccc09457 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,relpath_,POSIX_ACL_DEFAULT_XATTR,NULL,0); return (rv != -1); }