From: Nick Kew Date: Sat, 15 Sep 2007 22:36:36 +0000 (+0000) Subject: Failing to load a protocol handler is a server error, not a forbidden. X-Git-Tag: 2.3.0~1415 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7304e6f26f08af77f3ec42b898df18c0b08634c3;p=thirdparty%2Fapache%2Fhttpd.git Failing to load a protocol handler is a server error, not a forbidden. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@575996 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 3e888f75cee..d5265334bf5 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -952,7 +952,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: