]> sjero.net Git - wget/commitdiff
[svn] Don't force silent lookup.
authorhniksic <devnull@localhost>
Sat, 8 Nov 2003 00:11:29 +0000 (16:11 -0800)
committerhniksic <devnull@localhost>
Sat, 8 Nov 2003 00:11:29 +0000 (16:11 -0800)
src/ChangeLog
src/http.c

index c32550ecc849ef0519004f59789894f86105e088..28ec4d671324a93d20ce96532b125794b53cd38e 100644 (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.
index b6e3a64cf831872d64ec759ec94ef570d5b23007..031bff75b515618a3fbe6f3b2602a64582cae593 100644 (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;