You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2009/07/28 22:13:19 UTC

svn commit: r798695 - /httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c

Author: jim
Date: Tue Jul 28 20:13:18 2009
New Revision: 798695

URL: http://svn.apache.org/viewvc?rev=798695&view=rev
Log:
Align logic and message :)

Modified:
    httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c

Modified: httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c?rev=798695&r1=798694&r2=798695&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c (original)
+++ httpd/httpd/trunk/modules/cluster/mod_heartmonitor.c Tue Jul 28 20:13:18 2009
@@ -639,7 +639,7 @@
     }
 
     maxworkers = atoi(data);
-    if (maxworkers < 10)
+    if (maxworkers <= 10)
         return "HeartbeatMaxServers: Should be bigger than 10"; 
 
     return NULL;