From: W.C.A. Wijngaards Date: Fri, 18 Feb 2022 08:03:56 +0000 (+0100) Subject: - Fix that address not available is squelched from the logs for X-Git-Tag: release-1.16.0rc1~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a746d9693afda79c267200bc63d379349dcd1be3;p=thirdparty%2Funbound.git - Fix that address not available is squelched from the logs for udp connect failures. It is visible on verbosity 4 and more. --- diff --git a/doc/Changelog b/doc/Changelog index 00d65d283..59ff8af0f 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +18 February 2022: Wouter + - Fix that address not available is squelched from the logs for + udp connect failures. It is visible on verbosity 4 and more. + 16 February 2022: Wouter - Fix for #628: fix rpz-passthru for qname trigger by localzone type. diff --git a/services/outside_network.c b/services/outside_network.c index a7e5fa3ad..4578bf8fc 100644 --- a/services/outside_network.c +++ b/services/outside_network.c @@ -1994,6 +1994,9 @@ static int udp_connect_needs_log(int err) # endif # ifdef ENETDOWN case ENETDOWN: +# endif +# ifdef EADDRNOTAVAIL + case EADDRNOTAVAIL: # endif case EPERM: case EACCES: