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

Fix silly scoping bug.

This commit is contained in:
Micah Cowan 2007-10-02 23:15:08 -07:00
parent 1153d3d05c
commit 1b28d66fcb

View File

@ -1622,14 +1622,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
only hurts us. */
request_remove_header (req, "Authorization");
}
}
if (sock < 0)
{
/* In its current implementation, persistent_available_p will
look up conn->host in some cases. If that lookup failed, we
don't need to bother with connect_to_host. */
if (host_lookup_failed)
else if (host_lookup_failed)
{
request_free (req);
logprintf(LOG_NOTQUIET,
@ -1637,7 +1630,10 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
exec_name, relevant->host);
return HOSTERR;
}
}
if (sock < 0)
{
sock = connect_to_host (conn->host, conn->port);
if (sock == E_HOST)
{