aboutsummaryrefslogtreecommitdiff
path: root/pathfs_frontend
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-08 22:53:06 +0200
committerJakob Unterwurzacher2015-09-08 22:53:06 +0200
commitbfdbbbf8b476c810ac9d5c47a7fa6f7cc8904a55 (patch)
treeaf556055fa9a6bb9b264c40368906d7b5805bf0c /pathfs_frontend
parent28cdff5889927fcf8d720f13fcfe139720906988 (diff)
Fix panic on absolute symlink
Diffstat (limited to 'pathfs_frontend')
-rw-r--r--pathfs_frontend/fs.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pathfs_frontend/fs.go b/pathfs_frontend/fs.go
index 2f73462..0c1d879 100644
--- a/pathfs_frontend/fs.go
+++ b/pathfs_frontend/fs.go
@@ -134,6 +134,7 @@ func (fs *FS) Rmdir(name string, context *fuse.Context) (code fuse.Status) {
func (fs *FS) Symlink(pointedTo string, linkName string, context *fuse.Context) (code fuse.Status) {
// TODO symlink encryption
+ cryptfs.Debug.Printf("Symlink(\"%s\", \"%s\")\n", pointedTo, linkName)
return fs.FileSystem.Symlink(fs.EncryptPath(pointedTo), fs.EncryptPath(linkName), context)
}