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

Fix sign error on postLookup forget.

parent 4c7eaab8
......@@ -89,7 +89,7 @@ func (me *FileSystemConnector) postLookup(fi *os.FileInfo, fsNode FsNode, code S
if attrNode != nil {
mount.treeLock.Lock()
defer mount.treeLock.Unlock()
me.forgetUpdate(attrNode, -1)
me.forgetUpdate(attrNode, 1)
}
if code == ENOENT && mount.options.NegativeTimeout > 0.0 {
......
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