diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-04-24 12:31:14 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-04-24 12:31:14 -0700 |
| commit | ea4592161c50e8fa37dedc6236d3a5916f10dbfc (patch) | |
| tree | c1702e37c1cc050f3a2b5c9dc68c6c4785ea99db | |
| parent | c5a931b22cef199275984fd4de6d679a85dfad98 (diff) | |
| download | seaweedfs-ea4592161c50e8fa37dedc6236d3a5916f10dbfc.tar.xz seaweedfs-ea4592161c50e8fa37dedc6236d3a5916f10dbfc.zip | |
fix
| -rw-r--r-- | weed/filesys/dir.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
