From: Evan Hunt Date: Mon, 24 Oct 2022 20:54:39 +0000 (-0700) Subject: Fix an error when building with --disable-doh X-Git-Tag: v9.19.7~32^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67c0128ebb937794454716a0ffac2e2b6ce229bd;p=thirdparty%2Fbind9.git Fix an error when building with --disable-doh The netievent handler for isc_nmsocket_set_tlsctx() was inadvertently ifdef'd out when BIND was built with --disable-doh, resulting in an assertion failure on startup when DoT was configured. --- diff --git a/lib/isc/netmgr/netmgr.c b/lib/isc/netmgr/netmgr.c index c4f1d9d3ad3..5efd4be5737 100644 --- a/lib/isc/netmgr/netmgr.c +++ b/lib/isc/netmgr/netmgr.c @@ -481,8 +481,8 @@ process_netievent(void *arg) { NETIEVENT_CASE(httpsend); NETIEVENT_CASE(httpclose); NETIEVENT_CASE(httpendpoints); - NETIEVENT_CASE(settlsctx); #endif + NETIEVENT_CASE(settlsctx); NETIEVENT_CASE(sockstop); NETIEVENT_CASE(connectcb);