Run go fmt

This commit is contained in:
Jakob Unterwurzacher 2018-01-16 23:16:54 +01:00
parent 7d477d692b
commit 36ffd813cd
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ func initLongnameCache() {
// findLongnameParent converts "gocryptfs.longname.XYZ" to the plaintext name
func (rfs *ReverseFS) findLongnameParent(dir string, dirIV []byte, longname string) (plaintextName string, err error) {
longnameCacheLock.Lock()
hit := longnameParentCache[dir + "/" + longname]
hit := longnameParentCache[dir+"/"+longname]
longnameCacheLock.Unlock()
if hit != "" {
return hit, nil
@ -79,7 +79,7 @@ func (rfs *ReverseFS) findLongnameParent(dir string, dirIV []byte, longname stri
log.Panic("logic error or wrong shortNameMax constant?")
}
hName := rfs.nameTransform.HashLongName(cName)
longnameParentCache[dir + "/" + hName] = plaintextName
longnameParentCache[dir+"/"+hName] = plaintextName
if longname == hName {
hit = plaintextName
}