Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 46428 invoked from network); 9 Dec 2004 08:07:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 9 Dec 2004 08:07:33 -0000 Received: (qmail 85170 invoked by uid 500); 9 Dec 2004 08:07:31 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 85145 invoked by uid 500); 9 Dec 2004 08:07:30 -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: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 85119 invoked by uid 99); 9 Dec 2004 08:07:30 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 09 Dec 2004 00:07:29 -0800 Received: (qmail 46380 invoked by uid 65534); 9 Dec 2004 08:07:28 -0000 Date: 9 Dec 2004 08:07:28 -0000 Message-ID: <20041209080728.46376.qmail@minotaur.apache.org> From: mturk@apache.org To: cvs@httpd.apache.org Subject: svn commit: r111359 - /httpd/httpd/trunk/modules/proxy/proxy_ftp.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: mturk Date: Thu Dec 9 00:07:27 2004 New Revision: 111359 URL: http://svn.apache.org/viewcvs?view=rev&rev=111359 Log: Set the connection addr from connection pool addres since proxy_ftp does not use the determine_connection call. Modified: httpd/httpd/trunk/modules/proxy/proxy_ftp.c Modified: httpd/httpd/trunk/modules/proxy/proxy_ftp.c Url: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/proxy/proxy_ftp.c?view=diff&rev=111359&p1=httpd/httpd/trunk/modules/proxy/proxy_ftp.c&r1=111358&p2=httpd/httpd/trunk/modules/proxy/proxy_ftp.c&r2=111359 ============================================================================== --- httpd/httpd/trunk/modules/proxy/proxy_ftp.c (original) +++ httpd/httpd/trunk/modules/proxy/proxy_ftp.c Thu Dec 9 00:07:27 2004 @@ -926,7 +926,9 @@ } return status; } - ap_set_module_config(c->conn_config, &proxy_ftp_module, backend); + /* TODO: see if ftp could use determine_connection */ + backend->addr = worker->cp->addr; + ap_set_module_config(c->conn_config, &proxy_ftp_module, backend); }