Browse Source

fuse_readdir_seq.cpp

tests
Antonio SJ Musumeci 4 days ago
parent
commit
3394e7ec8b
  1. 8
      src/fuse_readdir_seq.cpp

8
src/fuse_readdir_seq.cpp

@ -37,7 +37,15 @@ FUSE::ReadDirSeq::opendir(const fuse_req_ctx_t *ctx_,
di = new DirInfo(fusepath_);
ffi_->fh = di->to_fh();
ffi_->noflush = true;
if(cfg.cache_readdir)
{
ffi_->keep_cache = true;
ffi_->cache_readdir = true;
}
return 0;
}

Loading…
Cancel
Save