From d27bcd07fd9821837b60e7fc5bde790b65b9f044 Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Thu, 7 Mar 2002 23:40:03 +0000 Subject: [PATCH] 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 --- modules/proxy/proxy_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0