Commit b4c00f53 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

fuse: fix printing of SetAttrIn.Gid

parent 3b02db56
......@@ -124,7 +124,7 @@ func (me *SetAttrIn) string() string {
s = append(s, fmt.Sprintf("uid %d", me.Uid))
}
if me.Valid&FATTR_GID != 0 {
s = append(s, fmt.Sprintf("uid %d", me.Gid))
s = append(s, fmt.Sprintf("gid %d", me.Gid))
}
if me.Valid&FATTR_SIZE != 0 {
s = append(s, fmt.Sprintf("size %d", me.Size))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment