Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 7062 invoked from network); 3 Dec 2005 20:17:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Dec 2005 20:17:44 -0000 Received: (qmail 17590 invoked by uid 500); 3 Dec 2005 20:17:42 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 17504 invoked by uid 500); 3 Dec 2005 20:17:40 -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 17493 invoked by uid 99); 3 Dec 2005 20:17:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Dec 2005 12:17:40 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 03 Dec 2005 12:17:39 -0800 Received: (qmail 6937 invoked by uid 65534); 3 Dec 2005 20:17:19 -0000 Message-ID: <20051203201719.6936.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r352010 - in /httpd/httpd/trunk: CHANGES modules/proxy/mod_proxy_balancer.c Date: Sat, 03 Dec 2005 20:17:18 -0000 To: cvs@httpd.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: rpluem Date: Sat Dec 3 12:17:11 2005 New Revision: 352010 URL: http://svn.apache.org/viewcvs?rev=352010&view=rev Log: * Fix PR37753. Off by one bug in get_path_param eats up too much of the string such that session identifier for sticky sessions is never found in URL. Submitted by: Kazuhiro Osawa Reviewed by: Ruediger Pluem Modified: httpd/httpd/trunk/CHANGES httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c Modified: httpd/httpd/trunk/CHANGES URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/CHANGES?rev=352010&r1=352009&r2=352010&view=diff ============================================================================== --- httpd/httpd/trunk/CHANGES [utf-8] (original) +++ httpd/httpd/trunk/CHANGES [utf-8] Sat Dec 3 12:17:11 2005 @@ -2,6 +2,9 @@ Changes with Apache 2.3.0 [Remove entries to the current 2.0 and 2.2 section below, when backported] + *) mod_proxy_balancer: Sticky session identifiers supplied in URL do not work. + PR37753. [Ruediger Pluem, Kazuhiro Osawa ] + *) mod_authz_dbd: SQL authz with Login/Session support [Nick Kew] *) Fix typo in ProxyStatus syntax error message. Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c?rev=352010&r1=352009&r2=352010&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c (original) +++ httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c Sat Dec 3 12:17:11 2005 @@ -113,7 +113,7 @@ char *path = NULL; for (path = strstr(url, name); path; path = strstr(path + 1, name)) { - path += (strlen(name) + 1); + path += strlen(name); if (*path == '=') { /* * Session path was found, get it's value