mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Declare ERR in gethttp.
Submitted by Ian Abbott in <3C022295.15135.464B54@localhost>.
This commit is contained in:
parent
84396de673
commit
278fb2412d
@ -1,3 +1,8 @@
|
||||
2001-11-26 Ian Abbott <abbotti@mev.co.uk>
|
||||
|
||||
* http.c (gethttp): fix undeclared variable 'err' when compiled
|
||||
with HAVE_SSL.
|
||||
|
||||
2001-11-26 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||
|
||||
* progress.c: Don't allocate new timers; use the timing data
|
||||
|
@ -563,7 +563,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
|
||||
/* initialize ssl_ctx on first run */
|
||||
if (!ssl_ctx)
|
||||
{
|
||||
err = init_ssl (&ssl_ctx);
|
||||
uerr_t err = init_ssl (&ssl_ctx);
|
||||
if (err != 0)
|
||||
{
|
||||
switch (err)
|
||||
|
Loading…
Reference in New Issue
Block a user