]> git.saurik.com Git - redis.git/blobdiff - src/replication.c
Jemalloc updated to 3.0.0.
[redis.git] / src / replication.c
index f03c424faa757fa70225132178df842c0b4dfbbd..5c5bc9abfa2452a7cae0459e3c3f4de765924f64 100644 (file)
@@ -423,7 +423,7 @@ void syncWithMaster(aeEventLoop *el, int fd, void *privdata, int mask) {
     }
 
     /* Issue the SYNC command */
-    if (syncWrite(fd,"SYNC \r\n",7,server.repl_syncio_timeout*1000) == -1) {
+    if (syncWrite(fd,"SYNC\r\n",6,server.repl_syncio_timeout*1000) == -1) {
         redisLog(REDIS_WARNING,"I/O error writing to MASTER: %s",
             strerror(errno));
         goto error;