mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-22 07:41:16 -05:00
don't fall through the if
git-svn-id: file:///svn/unbound/trunk@472 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
2122b961d3
commit
62b02dc911
1 changed files with 1 additions and 1 deletions
|
|
@ -1398,7 +1398,7 @@ iter_inform_super(struct module_qstate* qstate, int id,
|
||||||
{
|
{
|
||||||
if(qstate->return_rcode != LDNS_RCODE_NOERROR)
|
if(qstate->return_rcode != LDNS_RCODE_NOERROR)
|
||||||
error_supers(qstate, id, super);
|
error_supers(qstate, id, super);
|
||||||
if(qstate->is_priming)
|
else if(qstate->is_priming)
|
||||||
prime_supers(qstate, id, super);
|
prime_supers(qstate, id, super);
|
||||||
else processTargetResponse(qstate, id, super);
|
else processTargetResponse(qstate, id, super);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue