]> sjero.net Git - wget/commitdiff
[svn] Fix typo.
authorhniksic <devnull@localhost>
Wed, 31 Mar 2004 19:14:05 +0000 (11:14 -0800)
committerhniksic <devnull@localhost>
Wed, 31 Mar 2004 19:14:05 +0000 (11:14 -0800)
src/ChangeLog
src/http.c

index e7a692618049d181a6d04966c5044e79a8ee0971..c62b5126c8f58242961f9122fe78ca60df1e9338 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-31  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * http.c (gethttp): Fix typo: SCHEME_SSL -> SCHEME_HTTPS.
+
 2004-03-30  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * http.c (gethttp): Send the Proxy-Authorization header over
index dfb7c00204084172c622af9c42cb389627949095..0f19cbb778a310d738b4708c0ffee936b123aa87 100644 (file)
@@ -1206,7 +1206,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
 
       /* Proxy authorization over SSL is handled below. */
 #ifdef HAVE_SSL
-      if (u->scheme != SCHEME_SSL)
+      if (u->scheme != SCHEME_HTTPS)
 #endif
        request_set_header (req, "Proxy-Authorization", proxyauth, rel_value);
     }