1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Fix typo.

This commit is contained in:
hniksic 2004-03-31 11:14:05 -08:00
parent 463ea434ed
commit 2fdf38285b
2 changed files with 5 additions and 1 deletions

View 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

View 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);
}