From: Nick Kew Date: Sat, 22 Sep 2007 00:16:06 +0000 (+0000) Subject: Backport r575996 - failing to load a protocol handler is a server error. X-Git-Tag: 2.2.7~385 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4886889342843f6776d2fc0c7c768ae7bfa2e869;p=thirdparty%2Fapache%2Fhttpd.git Backport r575996 - failing to load a protocol handler is a server error. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@578334 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 76587419717..1abcc03c9e1 100644 --- a/STATUS +++ b/STATUS @@ -79,10 +79,6 @@ RELEASE SHOWSTOPPERS: 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 ] diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index d55ff24400f..33fb60d8fa2 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -860,7 +860,7 @@ static int proxy_handler(request_rec *r) "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: