]> git.saurik.com Git - redis.git/commitdiff
Minor MIGRATE implementation simplification about ttl handling.
authorantirez <antirez@gmail.com>
Tue, 10 Apr 2012 14:46:29 +0000 (16:46 +0200)
committerantirez <antirez@gmail.com>
Tue, 10 Apr 2012 14:46:29 +0000 (16:46 +0200)
src/cluster.c

index 50c25c35b103b428c8fd26d48e513617d9d5e3c2..93f095c34828fe84a66dc3f4e8fefcf27630ff44 100644 (file)
@@ -1586,7 +1586,7 @@ void migrateCommand(redisClient *c) {
     int fd;
     long timeout;
     long dbid;
-    long long ttl, expireat;
+    long long ttl = 0, expireat;
     robj *o;
     rio cmd, payload;
 
@@ -1633,7 +1633,7 @@ void migrateCommand(redisClient *c) {
     redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,"RESTORE",7));
     redisAssertWithInfo(c,NULL,c->argv[3]->encoding == REDIS_ENCODING_RAW);
     redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,c->argv[3]->ptr,sdslen(c->argv[3]->ptr)));
-    redisAssertWithInfo(c,NULL,rioWriteBulkLongLong(&cmd,(expireat==-1) ? 0 : ttl));
+    redisAssertWithInfo(c,NULL,rioWriteBulkLongLong(&cmd,ttl));
 
     /* Finally the last argument that is the serailized object payload
      * in the DUMP format. */