mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Remove an always true condition
This commit is contained in:
parent
99396653c2
commit
3781197ec6
@ -266,7 +266,7 @@ connect_to_ip (const ip_address *ip, int port, const char *print)
|
|||||||
if (print)
|
if (print)
|
||||||
{
|
{
|
||||||
const char *txt_addr = print_address (ip);
|
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... "),
|
logprintf (LOG_VERBOSE, _("Connecting to %s|%s|:%d... "),
|
||||||
escnonprint_uri (print), txt_addr, port);
|
escnonprint_uri (print), txt_addr, port);
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user