From a2ec6ae26c615564b981df0a223ccae5d0aabb69 Mon Sep 17 00:00:00 2001 From: caosiyang Date: Tue, 15 Aug 2017 14:15:16 +0800 Subject: [PATCH] Fix a typo: form => from --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index 719791d5f..9b6c92cde 100644 --- a/src/replication.c +++ b/src/replication.c @@ -1111,7 +1111,7 @@ void readSyncBulkPayload(aeEventLoop *el, int fd, void *privdata, int mask) { UNUSED(mask); /* Static vars used to hold the EOF mark, and the last bytes received - * form the server: when they match, we reached the end of the transfer. */ + * from the server: when they match, we reached the end of the transfer. */ static char eofmark[CONFIG_RUN_ID_SIZE]; static char lastbytes[CONFIG_RUN_ID_SIZE]; static int usemark = 0;