From f1bfd8233bac4b8e07b1f3f89cb3790d05445b11 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 1 Oct 2013 15:40:20 +0200 Subject: [PATCH] Cluster: fix typo in clusterProcessPacket() comment. --- src/cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index 42c4acb9..e5aa043f 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -1190,7 +1190,7 @@ int clusterProcessPacket(clusterLink *link) { clusterSendFailoverAuthIfNeeded(sender,hdr); } else if (type == CLUSTERMSG_TYPE_FAILOVER_AUTH_ACK) { if (!sender) return 1; /* We don't know that node. */ - /* We consider this vote only if the sender if a master serving + /* We consider this vote only if the sender is a master serving * a non zero number of slots, with the currentEpoch that is equal * to our currentEpoch. */ if (sender->flags & REDIS_NODE_MASTER &&