aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-02-16 21:20:29 +0100
committerJakob Unterwurzacher2017-02-16 21:20:29 +0100
commit62e7eb7d04793d7d629c1105a3eddf04e396ac24 (patch)
treec3589273e1ccd86553ea361f42c61cda3e4e63fd /internal
parent45c1ea499ee7f1f4309f1f8aa8b78c16642662db (diff)
tests: reverse: check Access() call
Diffstat (limited to 'internal')
-rw-r--r--internal/fusefrontend_reverse/rpath.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/fusefrontend_reverse/rpath.go b/internal/fusefrontend_reverse/rpath.go
index 9f52b28..02f4e9a 100644
--- a/internal/fusefrontend_reverse/rpath.go
+++ b/internal/fusefrontend_reverse/rpath.go
@@ -70,9 +70,9 @@ func (rfs *ReverseFS) rDecryptName(cName string, dirIV []byte, pDir string) (pNa
}
} else {
// It makes no sense to decrypt a ".name" file. This is a virtual file
- // that has no represantation in the plaintext filesystem. ".name"
+ // that has no representation in the plaintext filesystem. ".name"
// files should have already been handled in virtualfile.go.
- tlog.Warn.Printf("decryptPath: tried to decrypt %q!? Returning EINVAL.", cName)
+ tlog.Warn.Printf("rDecryptName: cannot decrypt virtual file %q", cName)
return "", syscall.EINVAL
}
return pName, nil