Browse Source

fuse_getattr.cpp

getattr-cache
Antonio SJ Musumeci 9 months ago
parent
commit
f2c8265c8e
  1. 4
      src/fuse_getattr.cpp

4
src/fuse_getattr.cpp

@ -98,6 +98,8 @@ namespace l
FollowSymlinks const followsymlinks_)
struct stat *st_)
{
int rv;
switch(followsymlinks_)
{
case FollowSymlinks::ENUM::NEVER:
@ -119,6 +121,8 @@ namespace l
rv = fs::lstat(fullpath,st_);
break;
}
return rv;
}
static

Loading…
Cancel
Save