Merge branch 'master' of github.com:NLnetLabs/unbound

This commit is contained in:
W.C.A. Wijngaards 2021-03-22 14:53:16 +01:00
commit ddb8b25800
3 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@
[![Travis Build Status](https://travis-ci.org/NLnetLabs/unbound.svg?branch=master)](https://travis-ci.org/NLnetLabs/unbound) [![Travis Build Status](https://travis-ci.org/NLnetLabs/unbound.svg?branch=master)](https://travis-ci.org/NLnetLabs/unbound)
[![Packaging status](https://repology.org/badge/tiny-repos/unbound.svg)](https://repology.org/project/unbound/versions) [![Packaging status](https://repology.org/badge/tiny-repos/unbound.svg)](https://repology.org/project/unbound/versions)
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/unbound.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:unbound) [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/unbound.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:unbound)
[![Documentation Status](https://readthedocs.org/projects/unbound/badge/?version=latest)](https://unbound.readthedocs.io/en/latest/?badge=latest)
Unbound is a validating, recursive, caching DNS resolver. It is designed to be Unbound is a validating, recursive, caching DNS resolver. It is designed to be
fast and lean and incorporates modern features based on open standards. If you fast and lean and incorporates modern features based on open standards. If you

View file

@ -863,6 +863,7 @@ dnsc_parse_keys(struct dnsc_env *env, struct config_file *cfg)
return cert_id; return cert_id;
} }
#ifdef SODIUM_MISUSE_HANDLER
static void static void
sodium_misuse_handler(void) sodium_misuse_handler(void)
{ {
@ -872,6 +873,7 @@ sodium_misuse_handler(void)
" unbound in a chroot, make sure /dev/urandom is available. See" " unbound in a chroot, make sure /dev/urandom is available. See"
" https://www.unbound.net/documentation/unbound.conf.html"); " https://www.unbound.net/documentation/unbound.conf.html");
} }
#endif
/** /**

View file

@ -1,3 +1,6 @@
22 March 2021: George
- Fix unused-function warning when compiling with --enable-dnscrypt.
22 March 2021: Wouter 22 March 2021: Wouter
- Merge #449 from orbea: build: Add missing linker flags. - Merge #449 from orbea: build: Add missing linker flags.
- iana portlist update. - iana portlist update.