disable symlink translation for now

This commit is contained in:
chrislu 2022-07-24 18:46:32 -07:00
parent 2dc5d4adac
commit b98c0b4bf4

View file

@ -17,7 +17,7 @@ func (wfs *WFS) GetAttr(cancel <-chan struct{}, input *fuse.GetAttrIn, out *fuse
}
inode := input.NodeId
_, _, entry, inode, status := wfs.maybeReadEntry(inode, true)
_, _, entry, inode, status := wfs.maybeReadEntry(inode, false)
if status == fuse.OK {
out.AttrValid = 1
wfs.setAttrByPbEntry(&out.Attr, inode, entry)