Fix IP representation in clusterMsgDataGossip

This commit is contained in:
Matt Stancliff
2014-02-27 15:52:43 +01:00
committed by antirez
parent d242b698f4
commit 7e274194bf
+1 -1
View File
@@ -148,7 +148,7 @@ typedef struct {
char nodename[REDIS_CLUSTER_NAMELEN];
uint32_t ping_sent;
uint32_t pong_received;
char ip[16]; /* IP address last time it was seen */
char ip[REDIS_IP_STR_LEN]; /* IP address last time it was seen */
uint16_t port; /* port last time it was seen */
uint16_t flags;
uint32_t notused; /* for 64 bit alignment */