Browse Source

fuse_getattr.cpp

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

4
src/fuse_getattr.cpp

@ -152,7 +152,9 @@ namespace l
if(rv == -1) if(rv == -1)
return -errno; return -errno;
basepath = cache.insert(fusepath_,basepaths[0]);
basepath = basepaths[0];
cache.insert(fusepath_,basepath.value());
} }
fullpath = fs::path::make(basepath.value(),fusepath_); fullpath = fs::path::make(basepath.value(),fusepath_);

Loading…
Cancel
Save