mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-04 13:59:35 -05:00
- Fix unbound-host to report error for DNSSEC state of failed lookups.
git-svn-id: file:///svn/unbound/trunk@4343 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
b01f0db381
commit
ce1f757ce0
2 changed files with 4 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
15 September 2017: Wouter
|
||||
- Fix unbound-host to report error for DNSSEC state of failed lookups.
|
||||
|
||||
13 September 2017: Wouter
|
||||
- tag 1.6.6rc2
|
||||
|
||||
|
|
|
|||
|
|
@ -209,6 +209,7 @@ massage_class(const char* c)
|
|||
static const char*
|
||||
secure_str(struct ub_result* result)
|
||||
{
|
||||
if(result->rcode != 0 && result->rcode != 3) return "(error)";
|
||||
if(result->secure) return "(secure)";
|
||||
if(result->bogus) return "(BOGUS (security failure))";
|
||||
return "(insecure)";
|
||||
|
|
|
|||
Loading…
Reference in a new issue