Fix wrong macro name after merge of 3.2 code.

This commit is contained in:
antirez 2016-01-29 22:22:12 +01:00
parent 301ed84ec8
commit 49b7f0ec45

View File

@ -3821,7 +3821,7 @@ void clusterReplyMultiBulkSlots(redisClient *c) {
addReplyMultiBulkLen(c, 3);
addReplyBulkCString(c, node->ip);
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 */
for (i = 0; i < node->numslaves; i++) {