From a746d9693afda79c267200bc63d379349dcd1be3 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Fri, 18 Feb 2022 09:03:56 +0100 Subject: [PATCH] - Fix that address not available is squelched from the logs for udp connect failures. It is visible on verbosity 4 and more. --- doc/Changelog | 4 ++++ services/outside_network.c | 3 +++ 2 files changed, 7 insertions(+) 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: -- 2.47.3