Commit 49b7f0ec authored by antirez's avatar antirez
Browse files

Fix wrong macro name after merge of 3.2 code.

parent 301ed84e
...@@ -3821,7 +3821,7 @@ void clusterReplyMultiBulkSlots(redisClient *c) { ...@@ -3821,7 +3821,7 @@ void clusterReplyMultiBulkSlots(redisClient *c) {
addReplyMultiBulkLen(c, 3); addReplyMultiBulkLen(c, 3);
addReplyBulkCString(c, node->ip); addReplyBulkCString(c, node->ip);
addReplyLongLong(c, node->port); addReplyLongLong(c, node->port);
addReplyBulkCBuffer(c, node->name, CLUSTER_NAMELEN); addReplyBulkCBuffer(c, node->name, REDIS_CLUSTER_NAMELEN);
/* Remaining nodes in reply are replicas for slot range */ /* Remaining nodes in reply are replicas for slot range */
for (i = 0; i < node->numslaves; i++) { for (i = 0; i < node->numslaves; i++) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment