From 74603017b6c5fb9ec61144ea4f25d2457d9835d8 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Thu, 26 May 2016 06:49:44 +0000 Subject: [PATCH] - Updated patch from Charles Walker. git-svn-id: file:///svn/unbound/trunk@3728 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 3 +++ iterator/iterator.c | 3 +-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/Changelog b/doc/Changelog index 8b2b7c7ca..315502a78 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +26 May 2016: Wouter + - Updated patch from Charles Walker. + 24 May 2016: Wouter - disable-dnssec-lame-check config option from Charles Walker. - remove memory leak from lame-check patch. diff --git a/iterator/iterator.c b/iterator/iterator.c index 465bf6540..f521940a7 100644 --- a/iterator/iterator.c +++ b/iterator/iterator.c @@ -2465,8 +2465,7 @@ processQueryResponse(struct module_qstate* qstate, struct iter_qstate* iq, verbose(VERB_ALGO, "cleared outbound list for query restart"); /* go to INIT_REQUEST_STATE for new qname. */ return next_state(iq, INIT_REQUEST_STATE); - } else if(!qstate->env->cfg->disable_dnssec_lame_check - && type == RESPONSE_TYPE_LAME) { + } else if(type == RESPONSE_TYPE_LAME) { /* Cache the LAMEness. */ verbose(VERB_DETAIL, "query response was %sLAME", dnsseclame?"DNSSEC ":""); -- 2.47.3