From d0a8512eda00996c586be8488b50d4133427f3b3 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 25 Jan 2016 15:19:16 +0100 Subject: [PATCH] Cluster anounce-ip/port WIP. --- src/cluster.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cluster.c b/src/cluster.c index 20cca743..6e305525 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -168,6 +168,7 @@ int clusterLoadConfig(char *filename) { if ((p = strrchr(argv[1],':')) == NULL) goto fmterr; *p = '\0'; memcpy(n->ip,argv[1],strlen(argv[1])+1); + this_is_broken(); char *busp = strchr(p+1,':'); if (busp) *busp = '\0'; n->port = atoi(p+1);