From c1a7d3e61f84344393f47924777c89d9cd78b775 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 10 Mar 2014 10:41:27 +0100 Subject: [PATCH] Cluster: abort on port too high error. It also fixes multi-line comment style to be consistent with the rest of the code base. Related to #1555. --- src/cluster.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cluster.c b/src/cluster.c index 3ce8bc513..622b90a18 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -331,15 +331,15 @@ void clusterInit(void) { server.cfd_count = 0; /* Port sanity check II - The other handshake port check is triggered too late to stop - us from trying to use a too-high cluster port number. - */ + * The other handshake port check is triggered too late to stop + * us from trying to use a too-high cluster port number. */ if (server.port > (65535-REDIS_CLUSTER_PORT_INCR)) { redisLog(REDIS_WARNING, "Redis port number too high. " "Cluster communication port is 10,000 port " "numbers higher than your Redis port. " "Your Redis port number must be " "lower than 55535."); + exit(1); } if (listenToPort(server.port+REDIS_CLUSTER_PORT_INCR, -- GitLab