From ea4592161c50e8fa37dedc6236d3a5916f10dbfc Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 24 Apr 2019 12:31:14 -0700 Subject: [PATCH] fix --- weed/filesys/dir.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/filesys/dir.go b/weed/filesys/dir.go index 0fd5c75e6..db36f379f 100644 --- a/weed/filesys/dir.go +++ b/weed/filesys/dir.go @@ -88,7 +88,7 @@ func (dir *Dir) Attr(ctx context.Context, attr *fuse.Attr) error { return err } - glog.V(2).Infof("dir %s: %v perm: %v", dir.Path, attributes, os.FileMode(attributes.FileMode)) + glog.V(2).Infof("dir %s: %v perm: %v", dir.Path, dir.attributes, os.FileMode(attributes.FileMode)) attr.Mode = os.FileMode(dir.attributes.FileMode) | os.ModeDir