]> git.saurik.com Git - redis.git/blobdiff - src/db.c
add support for generation of lcov coverage reports
[redis.git] / src / db.c
index 160ffb7909007e70c75f9bb98c3e8e211773dd48..73ee9166a001bdb3df4fc417012cd290d35a2afc 100644 (file)
--- a/src/db.c
+++ b/src/db.c
@@ -483,7 +483,7 @@ int expireIfNeeded(redisDb *db, robj *key) {
      * that is, 0 if we think the key should be still valid, 1 if
      * we think the key is expired at this time. */
     if (server.masterhost != NULL) {
-        return time(NULL) > when;
+        return mstime() > when;
     }
 
     /* Return when this key has not expired */