summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2009-07-28 22:13:18 +0200
committerJim Jagielski <jim@apache.org>2009-07-28 22:13:18 +0200
commit249ada6b69ac14869bdfe6f2010f9e83894eae24 (patch)
tree9b4da4a8aedb03dabca71e5d6b217f7b56057110
parentPut the hm_slot_server_t in a common include. (diff)
downloadapache2-249ada6b69ac14869bdfe6f2010f9e83894eae24.tar.xz
apache2-249ada6b69ac14869bdfe6f2010f9e83894eae24.zip
Align logic and message :)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@798695 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/cluster/mod_heartmonitor.c2
1 files changed, 1 insertions, 1 deletions
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;