]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backport r575996 - failing to load a protocol handler is a server error.
authorNick Kew <niq@apache.org>
Sat, 22 Sep 2007 00:16:06 +0000 (00:16 +0000)
committerNick Kew <niq@apache.org>
Sat, 22 Sep 2007 00:16:06 +0000 (00:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@578334 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/proxy/mod_proxy.c

diff --git a/STATUS b/STATUS
index 76587419717c4bcd477349fc77f84aed79cc7abb..1abcc03c9e1f854633ed9dbb184a3983b9fe9e1f 100644 (file)
--- 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 ]
index d55ff24400fbf9184058d8f11ecbabfa9925c54a..33fb60d8fa20534a52a14c1ad5b063de8f56f98e 100644 (file)
@@ -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: