]> git.saurik.com Git - redis.git/commitdiff
fix time() instead of mstime() in expireIfNeeded
authorPremysl Hruby <dfenze@gmail.com>
Tue, 27 Mar 2012 15:19:54 +0000 (17:19 +0200)
committerantirez <antirez@gmail.com>
Tue, 27 Mar 2012 21:04:34 +0000 (23:04 +0200)
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 */