I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core
21 lines
790 B
Diff
21 lines
790 B
Diff
Index: contrib/bind9/lib/dns/validator.c
|
|
===================================================================
|
|
--- contrib/bind9/lib/dns/validator.c (revision 284940)
|
|
+++ contrib/bind9/lib/dns/validator.c (working copy)
|
|
@@ -1406,7 +1406,6 @@ compute_keytag(dns_rdata_t *rdata, dns_rdata_dnske
|
|
*/
|
|
static isc_boolean_t
|
|
isselfsigned(dns_validator_t *val) {
|
|
- dns_fixedname_t fixed;
|
|
dns_rdataset_t *rdataset, *sigrdataset;
|
|
dns_rdata_t rdata = DNS_RDATA_INIT;
|
|
dns_rdata_t sigrdata = DNS_RDATA_INIT;
|
|
@@ -1461,7 +1460,7 @@ isselfsigned(dns_validator_t *val) {
|
|
|
|
result = dns_dnssec_verify2(name, rdataset, dstkey,
|
|
ISC_TRUE, mctx, &sigrdata,
|
|
- dns_fixedname_name(&fixed));
|
|
+ NULL);
|
|
dst_key_free(&dstkey);
|
|
if (result != ISC_R_SUCCESS)
|
|
continue;
|