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: