- Remove case fallthrough from deprecate-rsa-1024 code.

This commit is contained in:
W.C.A. Wijngaards 2021-05-07 17:06:09 +02:00
parent 59ea44322e
commit e217bb48ad
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
7 May 2021: Wouter
- Fix #485: Unbound occasionally reports broken stats.
- Add ./configure --with-deprecate-rsa-1024 that turns off RSA 1024.
- Remove case fallthrough from deprecate-rsa-1024 code.
4 May 2021: George
- Fix for #367: only attempt to get the interface for queries that are no

View file

@ -409,6 +409,7 @@ int dnskey_size_is_supported(struct ub_packed_rrset_key* dnskey_rrset,
/* reject RSA keys of 1024 bits and shorter */
if(keysize <= 1024)
return 0;
break;
default:
break;
}