]> sjero.net Git - wget/blobdiff - src/connect.c
Remove an always true condition
[wget] / 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