aboutsummaryrefslogtreecommitdiff
path: root/internal/contentenc
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-08-21 21:06:05 +0200
committerJakob Unterwurzacher2017-08-21 21:06:05 +0200
commited046aa35978c835d79f9cb3ee359349ee9145c5 (patch)
tree3ec6fc4aa796648738ec15a4aee652c2a2afb502 /internal/contentenc
parent26a6e61a46b9d14dbfaa0b1ba6b99caa86155037 (diff)
Fix misspellings reported by goreportcard.com
https://goreportcard.com/report/github.com/rfjakob/gocryptfs#misspell
Diffstat (limited to 'internal/contentenc')
-rw-r--r--internal/contentenc/content.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/contentenc/content.go b/internal/contentenc/content.go
index 5d0ff49..6524ad4 100644
--- a/internal/contentenc/content.go
+++ b/internal/contentenc/content.go
@@ -108,7 +108,7 @@ func (be *ContentEnc) DecryptBlocks(ciphertext []byte, firstBlockNo uint64, file
pBlock, err = be.DecryptBlock(cBlock, firstBlockNo, fileID)
if err != nil {
if be.forceDecode && err == stupidgcm.ErrAuth {
- tlog.Warn.Printf("DecryptBlocks: authentication failure in block #%d, overriden by forcedecode", firstBlockNo)
+ tlog.Warn.Printf("DecryptBlocks: authentication failure in block #%d, overridden by forcedecode", firstBlockNo)
} else {
break
}