From: Jim Jagielski Date: Tue, 28 Jul 2009 20:13:18 +0000 (+0000) Subject: Align logic and message :) X-Git-Tag: 2.3.3~414 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=249ada6b69ac14869bdfe6f2010f9e83894eae24;p=apache Align logic and message :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@798695 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cluster/mod_heartmonitor.c b/modules/cluster/mod_heartmonitor.c index 41137bf085..5b8712425d 100644 --- a/modules/cluster/mod_heartmonitor.c +++ b/modules/cluster/mod_heartmonitor.c @@ -639,7 +639,7 @@ static const char *cmd_hm_maxworkers(cmd_parms *cmd, } maxworkers = atoi(data); - if (maxworkers < 10) + if (maxworkers <= 10) return "HeartbeatMaxServers: Should be bigger than 10"; return NULL;