mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 11:50:00 -04:00
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.
This commit is contained in:
parent
b586aac433
commit
67c0128ebb
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue