[svn] Don't force silent lookup.

This commit is contained in:
hniksic 2003-11-07 16:11:29 -08:00
parent 7d12ad0f36
commit 1a0adb90b4
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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;