Nsec3 needs some tweaking

This commit is contained in:
Miek Gieben 2012-01-21 12:27:11 +01:00
parent 6d6c79a0f8
commit 5291767e24
1 changed files with 2 additions and 1 deletions

View File

@ -152,7 +152,8 @@ forever:
if err := r.Reply.Nsec3Verify(r.Reply.Question[0]); err == nil { if err := r.Reply.Nsec3Verify(r.Reply.Question[0]); err == nil {
fmt.Printf(";+ Correct authenticated denial of existence (NSEC3)\n") fmt.Printf(";+ Correct authenticated denial of existence (NSEC3)\n")
} else { } else {
fmt.Printf(";- Incorrect authenticated denial of existence (NSEC3): %s\n",err.Error()) // Could be: no nsec3 records
// fmt.Printf(";- Incorrect authenticated denial of existence (NSEC3): %s\n",err.Error())
} }
} }