1
0
mirror of https://github.com/rclone/rclone.git synced 2026-02-25 00:53:06 +00:00

cmd/mount2: fix the swapped UID / GID values

This commit is contained in:
Russell Cattelan
2020-08-19 22:25:03 -05:00
committed by Nick Craig-Wood
parent 6c140705e3
commit 99ff594773

View File

@@ -67,8 +67,8 @@ func setAttr(node vfs.Node, attr *fuse.Attr) {
modTime := node.ModTime()
// set attributes
vfs := node.VFS()
attr.Owner.Gid = vfs.Opt.UID
attr.Owner.Uid = vfs.Opt.GID
attr.Owner.Gid = vfs.Opt.GID
attr.Owner.Uid = vfs.Opt.UID
attr.Mode = getMode(node)
attr.Size = Size
attr.Nlink = 1