From: W.C.A. Wijngaards Date: Wed, 4 Aug 2021 09:43:29 +0000 (+0200) Subject: - Fix readzone compile under debug config. X-Git-Tag: release-1.13.2rc1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=592cfe3afccc832aa5753fccf349fe82efee7d4a;p=thirdparty%2Funbound.git - Fix readzone compile under debug config. --- diff --git a/Makefile.in b/Makefile.in index 476545ea9..3ac3b1681 100644 --- a/Makefile.in +++ b/Makefile.in @@ -248,7 +248,7 @@ DELAYER_OBJ_LINK=$(DELAYER_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ) \ $(SLDNS_OBJ) READZONE_SRC=testcode/readzone.c READZONE_OBJ=readzone.lo -READZONE_OBJ_LINK=$(READZONE_OBJ) $(COMPAT_OBJ) $(SLDNS_OBJ) +READZONE_OBJ_LINK=$(READZONE_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ) $(SLDNS_OBJ) IPSET_SRC=@IPSET_SRC@ IPSET_OBJ=@IPSET_OBJ@ DNSTAP_SOCKET_SRC=dnstap/unbound-dnstap-socket.c diff --git a/doc/Changelog b/doc/Changelog index ac992b345..8c4eb0023 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -9,6 +9,7 @@ - In unit test use openssl set security level to allow keys in test. - Fix static analysis warnings about localzone locks that are unused. - Fix missing locks in zonemd unit test. + - Fix readzone compile under debug config. 3 August 2021: George - Listen to read or write events after the SSL handshake.