nfs4: Fix #9555: wrong relational operator used

This commit is contained in:
Pawel Dziepak
2013-03-21 00:20:11 +01:00
parent df4d35e837
commit 1ca8178c52
@@ -250,7 +250,7 @@ DirectoryCache::_LoadSnapshot(bool trash)
status_t
DirectoryCache::Revalidate()
{
if (fExpireTime < system_time())
if (fExpireTime > system_time())
return B_OK;
uint64 change;