mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Don't force silent lookup.
This commit is contained in:
parent
7d12ad0f36
commit
1a0adb90b4
@ -1,3 +1,8 @@
|
||||
2003-11-08 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* http.c (persistent_available_p): No reason for the host lookup
|
||||
to be silent -- it's a lookup like any other.
|
||||
|
||||
2003-11-08 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* connect.c (register_extended): Check that fd >= 0.
|
||||
|
@ -449,7 +449,7 @@ persistent_available_p (const char *host, unsigned short port, int ssl)
|
||||
if (ssl != pc_last_ssl_p)
|
||||
return 0;
|
||||
|
||||
this_host_ip = lookup_host (host, LH_SILENT);
|
||||
this_host_ip = lookup_host (host, 0);
|
||||
if (!this_host_ip)
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user