pkgsrc/net/bind916/patches/patch-lib_dns_sdb.c
taca d7342ddc4c net/bind916: add version 9.16.5 package
Add bind916 version 9.16.5 package (BIND 9.16.5).


BIND, the Berkeley Internet Name Daemon.  This package contains the BIND
9.16 release.

  * New dnssec-policy statement to configure a key and signing policy for
    zones, enabling automatic key regeneration and rollover.
  * New network manager based on libuv.
  * Added support for the new GeoIP2 geolocation API, libmaxminddb.
  * Improved DNSSEC trust anchor configuration using the trust-anchors
    statement, permitting configuration of trust anchors in DS as well as
    DNSKEY format.
  * YAML output for dig, mdig, and delv.
2020-08-09 15:20:21 +00:00

15 lines
519 B
C

$NetBSD: patch-lib_dns_sdb.c,v 1.1 2020/08/09 15:20:22 taca Exp $
* Take from NetBSD base.
--- lib/dns/sdb.c.orig 2020-05-06 09:59:35.000000000 +0000
+++ lib/dns/sdb.c
@@ -621,7 +621,7 @@ createnode(dns_sdb_t *sdb, dns_sdbnode_t
node = isc_mem_get(sdb->common.mctx, sizeof(dns_sdbnode_t));
node->sdb = NULL;
- attach((dns_db_t *)sdb, (dns_db_t **)&node->sdb);
+ attach((dns_db_t *)sdb, (dns_db_t **)(void *)&node->sdb);
ISC_LIST_INIT(node->lists);
ISC_LIST_INIT(node->buffers);
ISC_LINK_INIT(node, link);