You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jf...@apache.org on 2006/07/29 02:56:24 UTC

svn commit: r426732 - /httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c

Author: jfclere
Date: Fri Jul 28 17:56:23 2006
New Revision: 426732

URL: http://svn.apache.org/viewvc?rev=426732&view=rev
Log:
Use id instead worker->id so that a rearrange to the slot mems is possible.

Modified:
    httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c

Modified: httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c?rev=426732&r1=426731&r2=426732&view=diff
==============================================================================
--- httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c (original)
+++ httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c Fri Jul 28 17:56:23 2006
@@ -132,7 +132,7 @@
 
     if (myscore == NULL)
         return APR_ENOSHMAVAIL;
-    rv = checkstorage->ap_slotmem_mem(myscore, worker->id, (void *) &workerconf);
+    rv = checkstorage->ap_slotmem_mem(myscore, id, (void *) &workerconf);
     if (rv != APR_SUCCESS) {
         return rv;
     }