summaryrefslogtreecommitdiff
path: root/cryptfs
diff options
context:
space:
mode:
Diffstat (limited to 'cryptfs')
-rw-r--r--cryptfs/names_diriv.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/cryptfs/names_diriv.go b/cryptfs/names_diriv.go
index 9012e48..3e24a73 100644
--- a/cryptfs/names_diriv.go
+++ b/cryptfs/names_diriv.go
@@ -11,15 +11,15 @@ import (
// A simple one-entry DirIV cache
type DirIVCache struct {
// Invalidated?
- cleared bool
+ cleared bool
// The DirIV
- iv []byte
+ iv []byte
// Directory the DirIV belongs to
- dir string
+ dir string
// Ecrypted version of "dir"
translatedDir string
// Synchronisation
- lock sync.RWMutex
+ lock sync.RWMutex
}
func (c *DirIVCache) lookup(dir string) (bool, []byte, string) {