mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Updated patch from Charles Walker.
git-svn-id: file:///svn/unbound/trunk@3728 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
84d6b865dd
commit
74603017b6
2 changed files with 4 additions and 2 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
26 May 2016: Wouter
|
||||||
|
- Updated patch from Charles Walker.
|
||||||
|
|
||||||
24 May 2016: Wouter
|
24 May 2016: Wouter
|
||||||
- disable-dnssec-lame-check config option from Charles Walker.
|
- disable-dnssec-lame-check config option from Charles Walker.
|
||||||
- remove memory leak from lame-check patch.
|
- remove memory leak from lame-check patch.
|
||||||
|
|
|
||||||
|
|
@ -2465,8 +2465,7 @@ processQueryResponse(struct module_qstate* qstate, struct iter_qstate* iq,
|
||||||
verbose(VERB_ALGO, "cleared outbound list for query restart");
|
verbose(VERB_ALGO, "cleared outbound list for query restart");
|
||||||
/* go to INIT_REQUEST_STATE for new qname. */
|
/* go to INIT_REQUEST_STATE for new qname. */
|
||||||
return next_state(iq, INIT_REQUEST_STATE);
|
return next_state(iq, INIT_REQUEST_STATE);
|
||||||
} else if(!qstate->env->cfg->disable_dnssec_lame_check
|
} else if(type == RESPONSE_TYPE_LAME) {
|
||||||
&& type == RESPONSE_TYPE_LAME) {
|
|
||||||
/* Cache the LAMEness. */
|
/* Cache the LAMEness. */
|
||||||
verbose(VERB_DETAIL, "query response was %sLAME",
|
verbose(VERB_DETAIL, "query response was %sLAME",
|
||||||
dnsseclame?"DNSSEC ":"");
|
dnsseclame?"DNSSEC ":"");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue