You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2008/01/20 14:05:47 UTC

svn commit: r613548 - /tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c

Author: rjung
Date: Sun Jan 20 05:05:45 2008
New Revision: 613548

URL: http://svn.apache.org/viewvc?rev=613548&view=rev
Log:
Fix copy and paste errors for fail_on_status.

Modified:
    tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c

Modified: tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c?rev=613548&r1=613547&r2=613548&view=diff
==============================================================================
--- tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c (original)
+++ tomcat/connectors/trunk/jk/native/common/jk_uri_worker_map.c Sun Jan 20 05:05:45 2008
@@ -427,11 +427,11 @@
     } else if (JK_IS_DEBUG_LEVEL(l))
         jk_log(l, JK_LOG_DEBUG,
                "Allocated fail_on_status array of size %d for worker %s",
-               uwr->extensions.fail_on_status, uwr->worker_name);
+               uwr->extensions.fail_on_status_size, uwr->worker_name);
 
 
-    for (j=0; j<uwr->extensions.activation_size; j++) {
-        uwr->extensions.activation[j] = JK_LB_ACTIVATION_UNSET;
+    for (j=0; j<uwr->extensions.fail_on_status_size; j++) {
+        uwr->extensions.fail_on_status[j] = 0;
     }
 
     cnt = 0;



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org