diff options
Diffstat (limited to 'internal/fusefrontend/root_node.go')
-rw-r--r-- | internal/fusefrontend/root_node.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/fusefrontend/root_node.go b/internal/fusefrontend/root_node.go index 3a2ecf3..e998e9d 100644 --- a/internal/fusefrontend/root_node.go +++ b/internal/fusefrontend/root_node.go @@ -5,7 +5,6 @@ import ( "path/filepath" "strings" "sync" - "sync/atomic" "syscall" "time" @@ -127,8 +126,6 @@ func (rn *RootNode) reportMitigatedCorruption(item string) { // // Prevents name clashes with internal files when file names are not encrypted func (rn *RootNode) isFiltered(path string) bool { - atomic.StoreUint32(&rn.IsIdle, 0) - if !rn.args.PlaintextNames { return false } |