From e2a3271b092939dae6d0cf3a1aa33194057ef4b0 Mon Sep 17 00:00:00 2001 From: Christian Spielberger Date: Tue, 22 Jun 2021 14:59:50 +0200 Subject: [PATCH] net: remove warning from net_resolve_address() Similar to net_inet_pton() it should not print a warning if argument can not be converted to IP address. --- src/net/net.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/net/net.c b/src/net/net.c index 03b9b6d1c..9a373f066 100644 --- a/src/net/net.c +++ b/src/net/net.c @@ -243,7 +243,6 @@ int net_resolve_address(const char *addr, struct sa *sa) err = getaddrinfo(addr, NULL, &hints, &res0); if (err) { - DEBUG_WARNING("getaddrinfo(): (%s)\n", gai_strerror(err)); err = EADDRNOTAVAIL; goto out; }