From: George Thessalonikefs Date: Fri, 28 Jul 2023 12:05:25 +0000 (+0200) Subject: Address review comments for #759: X-Git-Tag: release-1.18.0rc1~24^2^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=843fc69927085096576a625be859109dac4124eb;p=thirdparty%2Funbound.git Address review comments for #759: - Clear error text when an expected signature is missing. --- diff --git a/validator/val_sigcrypt.c b/validator/val_sigcrypt.c index 0ecd05f13..bd4891e3b 100644 --- a/validator/val_sigcrypt.c +++ b/validator/val_sigcrypt.c @@ -718,7 +718,7 @@ dnskey_verify_rrset(struct module_env* env, struct val_env* ve, } verbose(VERB_ALGO, "rrset failed to verify: all signatures are bogus"); if(!numchecked) { - *reason = "signatures bogus"; + *reason = "signature for expected key and algorithm missing"; if(reason_bogus) *reason_bogus = LDNS_EDE_DNSSEC_BOGUS; } else if(numchecked == numindeterminate) {