From 0384364c3e9764ff8ba80be5afe8d74ba27c82f7 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 10 May 2017 09:20:09 +0100 Subject: [PATCH] cmount: pass --FileSystemName under windows --- cmd/cmount/mount.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/cmount/mount.go b/cmd/cmount/mount.go index dad348100..8847e6004 100644 --- a/cmd/cmount/mount.go +++ b/cmd/cmount/mount.go @@ -188,6 +188,7 @@ func mountOptions(device string, mountpoint string) (options []string) { // These cause WinFsp to mean the current user options = append(options, "-o", "uid=-1") options = append(options, "-o", "gid=-1") + options = append(options, "--FileSystemName=rclone") } if allowNonEmpty {