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

fuse: print UID/GID for AccessIn

parent 2f0b9acd
......@@ -197,7 +197,10 @@ func (me *GetXAttrOut) string() string {
}
func (me *AccessIn) string() string {
return fmt.Sprintf("{%s}", FlagString(accessFlagName, int64(me.Mask), ""))
return fmt.Sprintf("{u=%d g=%d %s}",
me.Uid,
me.Gid,
FlagString(accessFlagName, int64(me.Mask), ""))
}
func (me *FlushIn) string() string {
......
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