From e7a8dfd2968634d025dbdbf39b9b7009e65f43d1 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 11 Apr 2000 17:12:31 +0000 Subject: [PATCH] If we mark an rdataset as secure, also mark the sigrdataset as secure. --- lib/dns/validator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/dns/validator.c b/lib/dns/validator.c index 6cdd3e3e7e..8b75feedbd 100644 --- a/lib/dns/validator.c +++ b/lib/dns/validator.c @@ -498,6 +498,7 @@ validate(dns_validator_t *val, isc_boolean_t resume) { fprintf(stderr, " (type %d) to secure\n", event->rdataset->type); event->rdataset->trust = dns_trust_secure; + event->sigrdataset->trust = dns_trust_secure; return (result); } }