From 6a54688842a78e2cd1e345c519a4910d6b16eb7a Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Fri, 12 Apr 2024 19:20:33 -0500 Subject: [PATCH] fuse_open.cpp --- src/fuse_open.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fuse_open.cpp b/src/fuse_open.cpp index c7a51f4a..c81c026c 100644 --- a/src/fuse_open.cpp +++ b/src/fuse_open.cpp @@ -307,7 +307,7 @@ namespace FUSE return 0; } - + int open_passthrough(const char *fusepath_, fuse_file_info_t *ffi_) @@ -320,7 +320,7 @@ namespace FUSE pti = PassthroughStuff::get_pti(fusepath_); const std::lock_guard lg(pti->mutex); - + l::config_to_ffi_flags(cfg,fc->pid,ffi_); if(cfg->writeback_cache) @@ -366,7 +366,7 @@ namespace FUSE return open_passthrough(fusepath_,ffi_); return open_regular(fusepath_,ffi_); - + PTInfo *pti; pti = PassthroughStuff::get_pti(fusepath_);