Commit 3c46377e authored by antirez's avatar antirez
Browse files

Fix wrong macro name after merge of 3.2 code. (again).

parent 49b7f0ec
......@@ -3831,7 +3831,7 @@ void clusterReplyMultiBulkSlots(redisClient *c) {
addReplyMultiBulkLen(c, 3);
addReplyBulkCString(c, node->slaves[i]->ip);
addReplyLongLong(c, node->slaves[i]->port);
addReplyBulkCBuffer(c, node->slaves[i]->name, CLUSTER_NAMELEN);
addReplyBulkCBuffer(c, node->slaves[i]->name, REDIS_CLUSTER_NAMELEN);
nested_elements++;
}
setDeferredMultiBulkLength(c, nested_replylen, nested_elements);
......
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