From: Doug MacEachern Date: Thu, 7 Mar 2002 23:40:03 +0000 (+0000) Subject: fix typo in ap_proxy_http_canon: s/https:/https/ X-Git-Tag: CHANGES~185 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d27bcd07fd9821837b60e7fc5bde790b65b9f044;p=apache fix typo in ap_proxy_http_canon: s/https:/https/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93784 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index d612d21cc1..73506367fa 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -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;