Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 78954 invoked from network); 22 Sep 2007 00:16:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Sep 2007 00:16:30 -0000 Received: (qmail 40750 invoked by uid 500); 22 Sep 2007 00:16:21 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 40679 invoked by uid 500); 22 Sep 2007 00:16:20 -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 40668 invoked by uid 99); 22 Sep 2007 00:16:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2007 17:16:20 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 22 Sep 2007 00:18:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D3FB01A9832; Fri, 21 Sep 2007 17:16:06 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r578334 - in /httpd/httpd/branches/2.2.x: STATUS modules/proxy/mod_proxy.c Date: Sat, 22 Sep 2007 00:16:06 -0000 To: cvs@httpd.apache.org From: niq@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070922001606.D3FB01A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: niq Date: Fri Sep 21 17:16:06 2007 New Revision: 578334 URL: http://svn.apache.org/viewvc?rev=578334&view=rev Log: Backport r575996 - failing to load a protocol handler is a server error. Modified: httpd/httpd/branches/2.2.x/STATUS httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c Modified: httpd/httpd/branches/2.2.x/STATUS URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=578334&r1=578333&r2=578334&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/STATUS (original) +++ httpd/httpd/branches/2.2.x/STATUS Fri Sep 21 17:16:06 2007 @@ -79,10 +79,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - * mod_proxy: return 500 not 403 when protocol module is not available - http://svn.apache.org/viewvc?view=rev&revision=575996 - +1: niq, rpluem, clere - PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ New proposals should be added at the end of the list ] Modified: httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c?rev=578334&r1=578333&r2=578334&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c (original) +++ httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c Fri Sep 21 17:16:06 2007 @@ -860,7 +860,7 @@ "If you are using a DSO version of mod_proxy, make sure " "the proxy submodules are included in the configuration " "using LoadModule.", r->uri); - access_status = HTTP_FORBIDDEN; + access_status = HTTP_INTERNAL_SERVER_ERROR; goto cleanup; } cleanup: