mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix permission denied sendto log, squelch the log messages
unless high verbosity is set.
This commit is contained in:
parent
fb0da1b6b0
commit
addd21f750
2 changed files with 5 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
12 April 2021: Wouter
|
||||
- Fix permission denied sendto log, squelch the log messages
|
||||
unless high verbosity is set.
|
||||
|
||||
9 April 2021: Wouter
|
||||
- rebuild configure to set EXTRALINK to libunbound.la for #460.
|
||||
|
||||
|
|
|
|||
|
|
@ -299,6 +299,7 @@ udp_send_errno_needs_log(struct sockaddr* addr, socklen_t addrlen)
|
|||
# ifdef ENETDOWN
|
||||
case ENETDOWN:
|
||||
# endif
|
||||
case EPERM:
|
||||
if(verbosity < VERB_ALGO)
|
||||
return 0;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue