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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=249ada6b69ac14869bdfe6f2010f9e83894eae24;p=thirdparty%2Fapache%2Fhttpd.git 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 41137bf0851..5b8712425dd 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;