From 1c41f81238d125e8c1cec474b324adc87f26fb4d Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 26 May 2015 16:38:17 +0900 Subject: [PATCH] Fixing broken owner bits --- node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.go b/node.go index a0eb9fa..69e140e 100644 --- a/node.go +++ b/node.go @@ -134,7 +134,7 @@ func (this *versionedNode) attr(attr *fuse.Attr) { attr.Atime, attr.Mtime, attr.Ctime = this.times() attr.Mode = this.info.Mode() attr.Nlink = uint32(stat.Nlink) - attr.Uid, attr.Gid = this.owner() + attr.Gid, attr.Uid = this.owner() attr.Rdev = uint32(stat.Rdev) }