summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Mallia <me@antoniomallia.it>2017-06-04 15:09:05 +0100
committerantirez <antirez@gmail.com>2017-06-15 17:02:16 +0200
commitc7a6b711f3af442cbb0e67a00f8c962e58fd0ed2 (patch)
tree6ebe3a748c7e0bbbd9a101a7a34925469abe140b
parent73d358f79f66948fb8cc71d32c0c7d438e3abe69 (diff)
downloadredis-c7a6b711f3af442cbb0e67a00f8c962e58fd0ed2.tar.gz
Fixed comment in clusterMsg version field
-rw-r--r--src/cluster.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cluster.h b/src/cluster.h
index 5e228c0f9..af85841c9 100644
--- a/src/cluster.h
+++ b/src/cluster.h
@@ -232,7 +232,7 @@ union clusterMsgData {
typedef struct {
char sig[4]; /* Siganture "RCmb" (Redis Cluster message bus). */
uint32_t totlen; /* Total length of this message */
- uint16_t ver; /* Protocol version, currently set to 0. */
+ uint16_t ver; /* Protocol version, currently set to 1. */
uint16_t port; /* TCP base port number. */
uint16_t type; /* Message type */
uint16_t count; /* Only used for some kind of messages. */