Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 10638 invoked from network); 4 Aug 2004 17:55:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Aug 2004 17:55:06 -0000 Received: (qmail 69769 invoked by uid 500); 4 Aug 2004 16:07:23 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 69715 invoked by uid 500); 4 Aug 2004 16:07:21 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 69690 invoked by uid 500); 4 Aug 2004 16:07:17 -0000 Received: (qmail 69676 invoked by uid 99); 4 Aug 2004 16:07:14 -0000 X-ASF-Spam-Status: No, hits=0.5 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.27.1) with SMTP; Wed, 04 Aug 2004 09:07:14 -0700 Received: (qmail 49982 invoked by uid 1303); 4 Aug 2004 16:07:03 -0000 Date: 4 Aug 2004 16:07:03 -0000 Message-ID: <20040804160703.49981.qmail@minotaur.apache.org> From: jfclere@apache.org To: jakarta-tomcat-connectors-cvs@apache.org Subject: cvs commit: jakarta-tomcat-connectors/ajp/proxy mod_proxy.c X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jfclere 2004/08/04 09:07:03 Modified: ajp/proxy mod_proxy.c Log: DON'T remove it. It doesn't work without it!!! Revision Changes Path 1.21 +2 -2 jakarta-tomcat-connectors/ajp/proxy/mod_proxy.c Index: mod_proxy.c =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/ajp/proxy/mod_proxy.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- mod_proxy.c 4 Aug 2004 14:48:13 -0000 1.20 +++ mod_proxy.c 4 Aug 2004 16:07:03 -0000 1.21 @@ -848,8 +848,8 @@ return "ProxyPass needs a path when not defined in a location"; new = apr_array_push(conf->aliases); - new->fake = f; - new->real = r; + new->fake = apr_pstrdup(cmd->pool, f); + new->real = apr_pstrdup(cmd->pool, r); arr = apr_table_elts(params); elts = (const apr_table_entry_t *)arr->elts; --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org