From 3781197ec61b6050222df10206c201c185c8fe2d Mon Sep 17 00:00:00 2001 From: Saint Xavier Date: Tue, 8 Jul 2008 00:29:02 +0200 Subject: [PATCH] Remove an always true condition --- src/connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connect.c b/src/connect.c index 1e8f07e5..a6ff0b9b 100644 --- a/src/connect.c +++ b/src/connect.c @@ -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 -- 2.39.2