diff options
| author | Jakob Unterwurzacher | 2016-10-24 19:18:13 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2016-10-24 19:18:13 +0200 | 
| commit | aeda9721d0150b9b77d9522bb3b4fcd17f2cbbfa (patch) | |
| tree | 1cded9f7087c0d6d3d8d29fe9a1c5f0ceb3783bc /internal/fusefrontend_reverse | |
| parent | ab4de4cbcd235bf1b3466a2a5bfa4d07f0537756 (diff) | |
Fix misspellings
Close https://github.com/rfjakob/gocryptfs/issues/54
Diffstat (limited to 'internal/fusefrontend_reverse')
| -rw-r--r-- | internal/fusefrontend_reverse/rpath.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/internal/fusefrontend_reverse/rpath.go b/internal/fusefrontend_reverse/rpath.go index 5288dcd..c8df8fe 100644 --- a/internal/fusefrontend_reverse/rpath.go +++ b/internal/fusefrontend_reverse/rpath.go @@ -30,7 +30,7 @@ const (  // derivePathIV derives an IV from an encrypted path by hashing it with sha256  func derivePathIV(path string, purpose ivPurposeType) []byte { -	// Use null byte as separator as it cannot occour in the path +	// Use null byte as separator as it cannot occur in the path  	extended := []byte(path + "\000" + string(purpose))  	hash := sha256.Sum256(extended)  	return hash[:nametransform.DirIVLen] | 
