]> git.saurik.com Git - redis.git/commitdiff
Fixed a few typos
authorantirez <antirez@gmail.com>
Wed, 9 Nov 2011 20:59:27 +0000 (21:59 +0100)
committerantirez <antirez@gmail.com>
Wed, 9 Nov 2011 20:59:27 +0000 (21:59 +0100)
src/rdb.c
src/rdb.h

index bb9121c88f5e4b793339e08a07ae31ea676ebf29..e11f5c9c3f27f1809c0814aa52c27b8ac8198eba 100644 (file)
--- a/src/rdb.c
+++ b/src/rdb.c
@@ -997,7 +997,7 @@ int rdbLoad(char *filename) {
             if ((expiretime = rdbLoadTime(&rdb)) == -1) goto eoferr;
             /* We read the time so we need to read the object type again. */
             if ((type = rdbLoadType(&rdb)) == -1) goto eoferr;
-            /* the EXPIREITME opcode specifies time in seconds, so convert
+            /* the EXPIRETIME opcode specifies time in seconds, so convert
              * into milliesconds. */
             expiretime *= 1000;
         } else if (type == REDIS_RDB_OPCODE_EXPIRETIME_MS) {
index cfe13acbd2ddc86093fa3d9f40e8b8dc0abc7ea7..827947b4a420d6f0faefda75934489d870088a8b 100644 (file)
--- a/src/rdb.h
+++ b/src/rdb.h
@@ -77,7 +77,7 @@ off_t rdbSavedObjectLen(robj *o);
 off_t rdbSavedObjectPages(robj *o);
 robj *rdbLoadObject(int type, rio *rdb);
 void backgroundSaveDoneHandler(int exitcode, int bysignal);
-int rdbSaveKeyValuePair(rio *rdb, robj *key, robj *val, long long expireitme, long long now);
+int rdbSaveKeyValuePair(rio *rdb, robj *key, robj *val, long long expiretime, long long now);
 robj *rdbLoadStringObject(rio *rdb);
 
 #endif