summaryrefslogtreecommitdiff
path: root/src/redis-cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/redis-cli.c')
-rw-r--r--src/redis-cli.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/redis-cli.c b/src/redis-cli.c
index 131e79a78..0a22598d2 100644
--- a/src/redis-cli.c
+++ b/src/redis-cli.c
@@ -6341,10 +6341,10 @@ assign_replicas:
* So if (bus_port == 0) or (bus_port == port + CLUSTER_MANAGER_PORT_INCR),
* we just call CLUSTER MEET with 2 arguments, using the old form. */
reply = CLUSTER_MANAGER_COMMAND(node, "cluster meet %s %d",
- first->ip, first->port);
+ first_ip, first->port);
} else {
reply = CLUSTER_MANAGER_COMMAND(node, "cluster meet %s %d %d",
- first->ip, first->port, first->bus_port);
+ first_ip, first->port, first->bus_port);
}
int is_err = 0;
if (reply != NULL) {
@@ -6535,7 +6535,7 @@ static int clusterManagerCommandAddNode(int argc, char **argv) {
first_ip, first->port);
} else {
reply = CLUSTER_MANAGER_COMMAND(new_node, "CLUSTER MEET %s %d %d",
- first->ip, first->port, first->bus_port);
+ first_ip, first->port, first->bus_port);
}
if (!(success = clusterManagerCheckRedisReply(new_node, reply, NULL)))