]> granicus.if.org Git - apache/commitdiff
fix typo in ap_proxy_http_canon: s/https:/https/
authorDoug MacEachern <dougm@apache.org>
Thu, 7 Mar 2002 23:40:03 +0000 (23:40 +0000)
committerDoug MacEachern <dougm@apache.org>
Thu, 7 Mar 2002 23:40:03 +0000 (23:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93784 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_http.c

index d612d21cc1894afed3e2eef0241d0b7b9607a555..73506367fa5d026cd178b2d38ce1695c9ae12d69 100644 (file)
@@ -95,7 +95,7 @@ int ap_proxy_http_canon(request_rec *r, char *url)
     }
     else if (strncasecmp(url, "https:", 6) == 0) {
         url += 6;
-        scheme = "https:";
+        scheme = "https";
     }
     else {
         return DECLINED;