From 69888bf96623e58d48fab5a93fb7539ce17af992 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 1 May 2020 18:35:32 +0100 Subject: [PATCH] cmount: send a hint as to whether the filesystem is case insensitive or not --- cmd/cmount/mount.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/cmount/mount.go b/cmd/cmount/mount.go index 36985fdcb..78099f012 100644 --- a/cmd/cmount/mount.go +++ b/cmd/cmount/mount.go @@ -152,6 +152,7 @@ func mount(f fs.Fs, mountpoint string) (*vfs.VFS, <-chan error, func() error, er if usingReaddirPlus { host.SetCapReaddirPlus(true) } + host.SetCapCaseInsensitive(f.Features().CaseInsensitive) // Create options options := mountOptions(f.Name()+":"+f.Root(), mountpoint)