The last argument to cache_rrset is wrong

The last argument to cache_rrset should be a bool (false)
not a pointer (NULL).
This commit is contained in:
Mark Andrews 2025-09-03 16:52:20 +10:00
parent 65fa569357
commit e968d0fb8e

View file

@ -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;
}