You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2005/08/31 18:04:30 UTC

svn commit: r265519 - /httpd/httpd/trunk/server/mpm/worker/worker.c

Author: colm
Date: Wed Aug 31 09:04:25 2005
New Revision: 265519

URL: http://svn.apache.org/viewcvs?rev=265519&view=rev
Log:

Revert one part. I should have tested seperately. This line isn't neccessary.


Modified:
    httpd/httpd/trunk/server/mpm/worker/worker.c

Modified: httpd/httpd/trunk/server/mpm/worker/worker.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/server/mpm/worker/worker.c?rev=265519&r1=265518&r2=265519&view=diff
==============================================================================
--- httpd/httpd/trunk/server/mpm/worker/worker.c (original)
+++ httpd/httpd/trunk/server/mpm/worker/worker.c Wed Aug 31 09:04:25 2005
@@ -2097,7 +2097,7 @@
     }
 
     ap_threads_per_child = atoi(arg);
-    if (first_thread_limit && ap_threads_per_child > thread_limit) {
+    if (ap_threads_per_child > thread_limit) {
         ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, 
                      "WARNING: ThreadsPerChild of %d exceeds ThreadLimit "
                      "value of %d", ap_threads_per_child,