git-svn-id: file:///svn/unbound/trunk@545 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2007-08-24 12:24:07 +00:00
parent 3a422ba496
commit a490e8777f
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,8 @@
- val-clean-additional option, so you can turn it off.
- move rrset verification out of the specific proof types into one
routine. This makes the proof routines prettier.
- fixup cname handling in validator, cname-to-positive and cname-to-
nodata work.
23 August 2007: Wouter
- CNAME handling - move needs_validation to before val_new().

View file

@ -480,7 +480,7 @@ val_chase_cname(struct query_info* qchase, struct reply_info* rep,
&qchase->qname_len);
if(!qchase->qname)
return 0; /* bad CNAME rdata */
(*cname_skip) = i;
(*cname_skip) = i+1;
return 1;
}
}