From 92b9de24170d5808992fb69c2f1f021af86aad0f Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 1 Feb 2016 18:16:25 +0100 Subject: [PATCH] Cluster announce: WIP, allow building again. --- src/cluster.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index ed7e2ecb2..147990029 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -168,7 +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(); + // this_is_broken(); char *busp = strchr(p+1,':'); if (busp) *busp = '\0'; n->port = atoi(p+1);