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

Pass context into GetAttr for lookup.

parent b4c42def
......@@ -50,7 +50,7 @@ func (me *FileSystemConnector) Lookup(header *InHeader, name string) (out *Entry
var fi *os.FileInfo
var fsNode FsNode
if child != nil {
fi, code = child.fsInode.GetAttr(nil, nil)
fi, code = child.fsInode.GetAttr(nil, context)
fsNode = child.FsNode()
} else {
fi, fsNode, code = parent.fsInode.Lookup(name, context)
......
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