From e968d0fb8ede020c19b6f5bbd782b82dd019c7bd Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 3 Sep 2025 16:52:20 +1000 Subject: [PATCH] The last argument to cache_rrset is wrong The last argument to cache_rrset should be a bool (false) not a pointer (NULL). --- lib/dns/resolver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3