diff options
author | Jakob Unterwurzacher | 2016-11-10 00:27:08 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-11-10 00:27:08 +0100 |
commit | 75ebb28a625bc16d145f5acd9e0cc1d305716afe (patch) | |
tree | 6e4c654c67b93933a2575857883777b3f05fc5d3 /internal/fusefrontend/write_lock.go | |
parent | df28fc5a11f5e52897f45cc299ab62a2a2cbaf4c (diff) |
ctlsock: add initial limited implementation
At the moment, in forward mode you can only encrypt paths
and in reverse mode you can only decrypt paths.
Diffstat (limited to 'internal/fusefrontend/write_lock.go')
-rw-r--r-- | internal/fusefrontend/write_lock.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/write_lock.go b/internal/fusefrontend/write_lock.go index 7394994..3addfd6 100644 --- a/internal/fusefrontend/write_lock.go +++ b/internal/fusefrontend/write_lock.go @@ -21,7 +21,7 @@ var wlock wlockMap // 2) lock ... unlock ... // 3) unregister type wlockMap struct { - // Counts lock() calls. As every operation that modifies a file should + // opCount counts lock() calls. As every operation that modifies a file should // call it, this effectively serves as a write-operation counter. // The variable is accessed without holding any locks so atomic operations // must be used. It must be the first element of the struct to guarantee |