X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/fa34ba39084255aeb0646a75c114c1f2e626e5c3..1858da2faae3b6a8becf4f7eef3f712d6e4b986b:/src/replication.c diff --git a/src/replication.c b/src/replication.c index ef148f1c..f03c424f 100644 --- a/src/replication.c +++ b/src/replication.c @@ -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;