diff --git a/src/ChangeLog b/src/ChangeLog index e7a69261..c62b5126 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-03-31 Hrvoje Niksic + + * http.c (gethttp): Fix typo: SCHEME_SSL -> SCHEME_HTTPS. + 2004-03-30 Hrvoje Niksic * http.c (gethttp): Send the Proxy-Authorization header over diff --git a/src/http.c b/src/http.c index dfb7c002..0f19cbb7 100644 --- a/src/http.c +++ b/src/http.c @@ -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); }