]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
include the scheme in the error message about missing a
authorEric Covener <covener@apache.org>
Sun, 22 May 2016 13:11:11 +0000 (13:11 +0000)
committerEric Covener <covener@apache.org>
Sun, 22 May 2016 13:11:11 +0000 (13:11 +0000)
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

modules/proxy/mod_proxy.c

index 6c966d84a8f548eb965780f0becbecb24dbd9cfc..7a3bad92666f231ecf0d3201ee46ac2825a4ce8e 100644 (file)
@@ -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;
     }