]> git.saurik.com Git - redis.git/commitdiff
Merge pull request #481 from dtran320/unstable
authorSalvatore Sanfilippo <antirez@gmail.com>
Wed, 25 Apr 2012 20:39:13 +0000 (13:39 -0700)
committerSalvatore Sanfilippo <antirez@gmail.com>
Wed, 25 Apr 2012 20:39:13 +0000 (13:39 -0700)
Spelling: s/synchrnonization/synchronization

src/replication.c

index ef148f1c28e20f2d6620d26f383392cde2e6e1f6..f03c424faa757fa70225132178df842c0b4dfbbd 100644 (file)
@@ -323,7 +323,7 @@ void readSyncBulkPayload(aeEventLoop *el, int fd, void *privdata, int mask) {
     }
     server.repl_transfer_lastio = server.unixtime;
     if (write(server.repl_transfer_fd,buf,nread) != nread) {
-        redisLog(REDIS_WARNING,"Write error or short write writing to the DB dump file needed for MASTER <-> SLAVE synchrnonization: %s", strerror(errno));
+        redisLog(REDIS_WARNING,"Write error or short write writing to the DB dump file needed for MASTER <-> SLAVE synchronization: %s", strerror(errno));
         goto error;
     }
     server.repl_transfer_left -= nread;