From: Mark Andrews Date: Wed, 3 Sep 2025 06:52:20 +0000 (+1000) Subject: The last argument to cache_rrset is wrong X-Git-Tag: v9.21.14~55^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e968d0fb8ede020c19b6f5bbd782b82dd019c7bd;p=thirdparty%2Fbind9.git The last argument to cache_rrset is wrong The last argument to cache_rrset should be a bool (false) not a pointer (NULL). --- diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c index 26204bde100..bb57ea144e9 100644 --- a/lib/dns/resolver.c +++ b/lib/dns/resolver.c @@ -5934,7 +5934,7 @@ rctx_cache_insecure(respctx_t *rctx, dns_message_t *message, dns_name_t *name, * Cache the rdataset. */ result = cache_rrset(fctx, rctx->now, name, rdataset, NULL, &node, - added, NULL, NULL); + added, NULL, false); return result; }