diff options
author | 2020-05-19 08:48:49 +0000 | |
---|---|---|
committer | 2020-05-19 08:48:49 +0000 | |
commit | 06a13c09c94ffcf198b2462aac9f18628335bfee (patch) | |
tree | cc1032cf658ebbd399dbd93f55507476f3310e31 /usr.sbin/unbound/iterator/iter_utils.c | |
parent | Do not set the 802.11 ESS capability bit in association requests. (diff) | |
download | wireguard-openbsd-06a13c09c94ffcf198b2462aac9f18628335bfee.tar.xz wireguard-openbsd-06a13c09c94ffcf198b2462aac9f18628335bfee.zip |
merge unbound 1.10.1
Diffstat (limited to 'usr.sbin/unbound/iterator/iter_utils.c')
-rw-r--r-- | usr.sbin/unbound/iterator/iter_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/unbound/iterator/iter_utils.c b/usr.sbin/unbound/iterator/iter_utils.c index 2ab55ceb497..3c14de86e7b 100644 --- a/usr.sbin/unbound/iterator/iter_utils.c +++ b/usr.sbin/unbound/iterator/iter_utils.c @@ -1142,7 +1142,7 @@ int iter_lookup_parent_glue_from_cache(struct module_env* env, log_rrset_key(VERB_ALGO, "found parent-side", akey); ns->done_pside4 = 1; /* a negative-cache-element has no addresses it adds */ - if(!delegpt_add_rrset_A(dp, region, akey, 1)) + if(!delegpt_add_rrset_A(dp, region, akey, 1, NULL)) log_err("malloc failure in lookup_parent_glue"); lock_rw_unlock(&akey->entry.lock); } @@ -1154,7 +1154,7 @@ int iter_lookup_parent_glue_from_cache(struct module_env* env, log_rrset_key(VERB_ALGO, "found parent-side", akey); ns->done_pside6 = 1; /* a negative-cache-element has no addresses it adds */ - if(!delegpt_add_rrset_AAAA(dp, region, akey, 1)) + if(!delegpt_add_rrset_AAAA(dp, region, akey, 1, NULL)) log_err("malloc failure in lookup_parent_glue"); lock_rw_unlock(&akey->entry.lock); } |