You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2002/03/08 00:40:03 UTC

cvs commit: httpd-2.0/modules/proxy proxy_http.c

dougm       02/03/07 15:40:03

  Modified:    modules/proxy proxy_http.c
  Log:
  fix typo in ap_proxy_http_canon: s/https:/https/
  
  Revision  Changes    Path
  1.132     +1 -1      httpd-2.0/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_http.c,v
  retrieving revision 1.131
  retrieving revision 1.132
  diff -u -r1.131 -r1.132
  --- proxy_http.c	21 Feb 2002 06:06:31 -0000	1.131
  +++ proxy_http.c	7 Mar 2002 23:40:03 -0000	1.132
  @@ -95,7 +95,7 @@
       }
       else if (strncasecmp(url, "https:", 6) == 0) {
           url += 6;
  -        scheme = "https:";
  +        scheme = "https";
       }
       else {
           return DECLINED;