mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-22 18:17:05 -04:00
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:
parent
65fa569357
commit
e968d0fb8e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue