From: Wouter Wijngaards Date: Wed, 1 Aug 2007 14:10:51 +0000 (+0000) Subject: don't fall through the if X-Git-Tag: release-0.5~169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62b02dc911f98a19a9363d406cb54cfdd9e87c7f;p=thirdparty%2Funbound.git don't fall through the if git-svn-id: file:///svn/unbound/trunk@472 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/iterator/iterator.c b/iterator/iterator.c index 413e4f3ec..f964d06a6 100644 --- a/iterator/iterator.c +++ b/iterator/iterator.c @@ -1398,7 +1398,7 @@ iter_inform_super(struct module_qstate* qstate, int id, { if(qstate->return_rcode != LDNS_RCODE_NOERROR) error_supers(qstate, id, super); - if(qstate->is_priming) + else if(qstate->is_priming) prime_supers(qstate, id, super); else processTargetResponse(qstate, id, super); }