From: Eric Covener Date: Sun, 22 May 2016 13:11:11 +0000 (+0000) Subject: include the scheme in the error message about missing a X-Git-Tag: 2.5.0-alpha~1583 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f21415d6d80da20278d1c0d5ee8a26a61126b410;p=thirdparty%2Fapache%2Fhttpd.git include the scheme in the error message about missing a mod_proxy_submodule (mod_proxy_$usually_a_scheme) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1745039 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 6c966d84a8f..7a3bad92666 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -1258,10 +1258,11 @@ static int proxy_handler(request_rec *r) if (DECLINED == access_status) { ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01144) - "No protocol handler was valid for the URL %s. " + "No protocol handler was valid for the URL %s " + "(scheme '%s'). " "If you are using a DSO version of mod_proxy, make sure " "the proxy submodules are included in the configuration " - "using LoadModule.", r->uri); + "using LoadModule.", r->uri, scheme); access_status = HTTP_INTERNAL_SERVER_ERROR; goto cleanup; }