summaryrefslogtreecommitdiff
path: root/cryptfs
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-29 21:55:20 +0100
committerJakob Unterwurzacher2015-11-29 21:55:20 +0100
commitce42a6f23d9fd50ddf2e66a68e6ec57cad80c018 (patch)
treee5ca3e87688171785738350f541966fdacab9470 /cryptfs
parent20b058a33335f48812864513cc13ea0a276aaaa3 (diff)
Run go fmt
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) {