diff options
author | Sebastian Lackner | 2017-12-12 14:38:00 +0100 |
---|---|---|
committer | rfjakob | 2017-12-25 15:07:37 +0100 |
commit | a24342f656f6acd544ec07dada576d57a716b34d (patch) | |
tree | c63568499378bd673bbe7f64d8365183582e9164 /internal/fusefrontend | |
parent | ca594b2349d748e410a6d834f0dd3d1a4a9cfa1c (diff) |
fusefrontend: Handle PlaintextNames mode in Link
In PlaintextNames mode the "gocryptfs.longname." prefix does not have any
special meaning.
https://github.com/rfjakob/gocryptfs/issues/174
Diffstat (limited to 'internal/fusefrontend')
-rw-r--r-- | internal/fusefrontend/fs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/fs.go b/internal/fusefrontend/fs.go index cc055c7..8c9e5e4 100644 --- a/internal/fusefrontend/fs.go +++ b/internal/fusefrontend/fs.go @@ -550,7 +550,7 @@ func (fs *FS) Link(oldPath string, newPath string, context *fuse.Context) (code } // Handle long file name cNewName := filepath.Base(cNewPath) - if nametransform.IsLongContent(cNewName) { + if !fs.args.PlaintextNames && nametransform.IsLongContent(cNewName) { dirfd, err := os.Open(filepath.Dir(cNewPath)) if err != nil { return fuse.ToStatus(err) |