From d7d3032de7f5d3dd3cffea6064549b63a9ad7d59 Mon Sep 17 00:00:00 2001 From: Petr Menšík Date: Jun 17 2021 15:57:52 +0000 Subject: Skip isc_bind9 check on BIND 9.16.17+ Reference variable refvar from dns_dyndbctx_t were removed. Removed was also flag requesting different namespace. Skip that check on last stable version, it should eval to false on all versions anyway. --- diff --git a/src/ldap_driver.c b/src/ldap_driver.c index e9f1005..5f9e00a 100644 --- a/src/ldap_driver.c +++ b/src/ldap_driver.c @@ -1156,6 +1156,7 @@ dyndb_init(isc_mem_t *mctx, const char *name, const char *parameters, RUNTIME_CHECK(isc_once_do(&library_init_once, library_init) == ISC_R_SUCCESS); +#if LIBDNS_VERSION_MAJOR < 1617 /* * Depending on how dlopen() was called, we may not have * access to named's global namespace, in which case we need @@ -1168,6 +1169,7 @@ dyndb_init(isc_mem_t *mctx, const char *name, const char *parameters, isc_hash_set_initializer(dctx->hashinit); log_debug(5, "registering library from dynamic ldap driver, %p != %p.", dctx->refvar, &isc_bind9); } +#endif log_debug(2, "registering dynamic ldap driver for %s.", name);