]> sjero.net Git - wget/commitdiff
Remove an always true condition
authorSaint Xavier <wget@sxav.eu>
Mon, 7 Jul 2008 22:29:02 +0000 (00:29 +0200)
committerSaint Xavier <wget@sxav.eu>
Mon, 7 Jul 2008 22:29:02 +0000 (00:29 +0200)
src/connect.c

index 1e8f07e5fcd98755ac8b5f78d763192b249c3434..a6ff0b9bcfdd51147190831e3c221d517907de24 100644 (file)
@@ -266,7 +266,7 @@ connect_to_ip (const ip_address *ip, int port, const char *print)
   if (print)
     {
       const char *txt_addr = print_address (ip);
-      if (print && 0 != strcmp (print, txt_addr))
+      if (0 != strcmp (print, txt_addr))
         logprintf (LOG_VERBOSE, _("Connecting to %s|%s|:%d... "),
                    escnonprint_uri (print), txt_addr, port);
       else