mirror of
https://github.com/rclone/rclone.git
synced 2025-06-23 13:31:25 +02:00
cmount: set the correct values for uid, gid under Windows
This commit is contained in:
parent
bcd87009e2
commit
7b47a1e842
@ -39,8 +39,8 @@ var (
|
|||||||
writebackCache = false
|
writebackCache = false
|
||||||
maxReadAhead fs.SizeSuffix = 128 * 1024
|
maxReadAhead fs.SizeSuffix = 128 * 1024
|
||||||
umask = 0
|
umask = 0
|
||||||
uid = uint32(0) // set in mount_unix.go
|
uid = ^uint32(0) // these values instruct WinFSP-FUSE to use the current user
|
||||||
gid = uint32(0)
|
gid = ^uint32(0) // overriden for non windows in mount_unix.go
|
||||||
// foreground = false
|
// foreground = false
|
||||||
// default permissions for directories - modified by umask in Mount
|
// default permissions for directories - modified by umask in Mount
|
||||||
dirPerms = os.FileMode(0777)
|
dirPerms = os.FileMode(0777)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user