Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
49b7f0ec
Commit
49b7f0ec
authored
Jan 29, 2016
by
antirez
Browse files
Fix wrong macro name after merge of 3.2 code.
parent
301ed84e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cluster.c
View file @
49b7f0ec
...
@@ -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
++
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment