mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '3827-fix-dnsrps-builds-v9_18' into 'v9_18'
[9.18] Fix DNSRPS builds See merge request isc-projects/bind9!7474
This commit is contained in:
commit
5a14d4b015
3 changed files with 7 additions and 5 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
6083. [bug] Fix DNSRPS-enabled builds as they were inadvertently
|
||||
broken by change 6042. [GL #3827]
|
||||
|
||||
6082. [test] fuzz/dns_message_checksig leaked memory when shutting
|
||||
down. [GL #3828]
|
||||
|
||||
|
|
|
|||
|
|
@ -1463,10 +1463,7 @@ AC_COMPILE_IFELSE(
|
|||
AC_MSG_RESULT([no])
|
||||
])
|
||||
|
||||
# DNSRPS is not included in pairwise testing as the librpz library is not
|
||||
# present in the relevant Docker image.
|
||||
#
|
||||
# [pairwise: skip]
|
||||
# [pairwise: --enable-dnsrps --enable-dnsrps-dl, --disable-dnsrps]
|
||||
AC_ARG_ENABLE([dnsrps-dl],
|
||||
[AS_HELP_STRING([--enable-dnsrps-dl],
|
||||
[DNS Response Policy Service delayed link
|
||||
|
|
|
|||
|
|
@ -622,7 +622,8 @@ rpsdb_finddb(dns_db_t *db, const dns_name_t *name, dns_dbversion_t *version,
|
|||
|
||||
static isc_result_t
|
||||
rpsdb_allrdatasets(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
|
||||
isc_stdtime_t now, dns_rdatasetiter_t **iteratorp) {
|
||||
unsigned int options, isc_stdtime_t now,
|
||||
dns_rdatasetiter_t **iteratorp) {
|
||||
rpsdb_t *rpsdb = (rpsdb_t *)db;
|
||||
rpsdb_rdatasetiter_t *rpsdb_iter;
|
||||
|
||||
|
|
@ -638,6 +639,7 @@ rpsdb_allrdatasets(dns_db_t *db, dns_dbnode_t *node, dns_dbversion_t *version,
|
|||
rpsdb_iter->common.magic = DNS_RDATASETITER_MAGIC;
|
||||
rpsdb_iter->common.methods = &rpsdb_rdatasetiter_methods;
|
||||
rpsdb_iter->common.db = db;
|
||||
rpsdb_iter->common.options = options;
|
||||
rpsdb_attachnode(db, node, &rpsdb_iter->common.node);
|
||||
|
||||
*iteratorp = &rpsdb_iter->common;
|
||||
|
|
|
|||
Loading…
Reference in a new issue