From 1b9d65598295dd9d71dc0ec892be4256b8df2fd4 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 24 Nov 2024 22:04:06 -0600 Subject: [PATCH] func_getattr_ff.cpp --- src/func_getattr_ff.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/func_getattr_ff.cpp b/src/func_getattr_ff.cpp index 3cec7d7f..7b627143 100644 --- a/src/func_getattr_ff.cpp +++ b/src/func_getattr_ff.cpp @@ -20,7 +20,10 @@ Func2::GetattrFF::process(const Branches &branches_, fullpath += fusepath_; rv = fs::lstat(fullpath.c_str(),st_); if(rv == 0) - return 0; + { + fs::inode::calc(fusepath_,st_); + return 0; + } } return -ENOENT;