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 60cc2cba1f
commit b14a58c9b8

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