Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 63543 invoked from network); 29 Jul 2006 00:56:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Jul 2006 00:56:46 -0000 Received: (qmail 37753 invoked by uid 500); 29 Jul 2006 00:56:45 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 37722 invoked by uid 500); 29 Jul 2006 00:56:45 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 37711 invoked by uid 99); 29 Jul 2006 00:56:45 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Jul 2006 17:56:45 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Jul 2006 17:56:44 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 9E3BF1A981A; Fri, 28 Jul 2006 17:56:24 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r426732 - /httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/health_checker_util.c Date: Sat, 29 Jul 2006 00:56:24 -0000 To: cvs@httpd.apache.org From: jfclere@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060729005624.9E3BF1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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; }