From d772afeb908f1066973f1ec273db2dac03fda4ec Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Thu, 20 Nov 2025 15:48:17 -0600 Subject: [PATCH] fuse_getattr.cpp --- src/fuse_getattr.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/fuse_getattr.cpp b/src/fuse_getattr.cpp index c31f373f..7cfa00aa 100644 --- a/src/fuse_getattr.cpp +++ b/src/fuse_getattr.cpp @@ -92,6 +92,12 @@ _getattr(const fs::path &fusepath_, st_, cfg.follow_symlinks, cfg.symlinkify_timeout); + if(rv == -EACCES) + { + fmt::println("getattr:"); + + } + if((rv < 0) && Config::is_rootdir(fusepath_)) return ::_getattr_fake_root(st_);