diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/nametransform/diriv.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/nametransform/diriv.go b/internal/nametransform/diriv.go index 72c8e7c..cd96cfb 100644 --- a/internal/nametransform/diriv.go +++ b/internal/nametransform/diriv.go @@ -99,7 +99,7 @@ func (be *NameTransform) EncryptPathDirIV(plainPath string, rootDir string) (cip if be.longNames && len(cBaseName) > syscall.NAME_MAX { cBaseName = HashLongName(cBaseName) } - cipherPath = cParentDir + "/" + cBaseName + cipherPath = filepath.Join(cParentDir, cBaseName) return cipherPath, nil } // Not cached - walk the directory tree @@ -118,7 +118,7 @@ func (be *NameTransform) EncryptPathDirIV(plainPath string, rootDir string) (cip encryptedNames = append(encryptedNames, encryptedName) wd = filepath.Join(wd, encryptedName) } - cipherPath = strings.Join(encryptedNames, "/") + cipherPath = filepath.Join(encryptedNames...) // Cache the final DirIV cParentDir = filepath.Dir(cipherPath) be.DirIVCache.store(parentDir, iv, cParentDir) |