mirror of
https://github.com/rclone/rclone.git
synced 2025-06-21 04:08:02 +02:00
cmd/mount2: fix the swapped UID / GID values
This commit is contained in:
parent
6c140705e3
commit
99ff594773
@ -67,8 +67,8 @@ func setAttr(node vfs.Node, attr *fuse.Attr) {
|
|||||||
modTime := node.ModTime()
|
modTime := node.ModTime()
|
||||||
// set attributes
|
// set attributes
|
||||||
vfs := node.VFS()
|
vfs := node.VFS()
|
||||||
attr.Owner.Gid = vfs.Opt.UID
|
attr.Owner.Gid = vfs.Opt.GID
|
||||||
attr.Owner.Uid = vfs.Opt.GID
|
attr.Owner.Uid = vfs.Opt.UID
|
||||||
attr.Mode = getMode(node)
|
attr.Mode = getMode(node)
|
||||||
attr.Size = Size
|
attr.Size = Size
|
||||||
attr.Nlink = 1
|
attr.Nlink = 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user