Remove an always true condition

This commit is contained in:
Saint Xavier 2008-07-08 00:29:02 +02:00
parent 99396653c2
commit 3781197ec6
1 changed files with 1 additions and 1 deletions

View 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