From 3ab769941dbd56c37b7fd3524830315a5e41abd1 Mon Sep 17 00:00:00 2001 From: caosiyang Date: Thu, 10 Aug 2017 18:40:33 +0800 Subject: [PATCH] Fix a typo: replicationFeedSlavesFromMaster() => replicationFeedSlavesFromMasterStream() --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index 6be5d2631..719791d5f 100644 --- a/src/replication.c +++ b/src/replication.c @@ -169,7 +169,7 @@ void feedReplicationBacklogWithObject(robj *o) { * as well. This function is used if the instance is a master: we use * the commands received by our clients in order to create the replication * stream. Instead if the instance is a slave and has sub-slaves attached, - * we use replicationFeedSlavesFromMaster() */ + * we use replicationFeedSlavesFromMasterStream() */ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) { listNode *ln; listIter li;