From: Miek Gieben Date: Mon, 20 Jun 2005 13:57:43 +0000 (+0000) Subject: ifdef the code to prevent warnings X-Git-Tag: release-0.66~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ace32bc303cadabe80c72da1bd07ce27023281d;p=thirdparty%2Fldns.git ifdef the code to prevent warnings --- diff --git a/Changelog b/Changelog index 100a64eb..99bb28df 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,10 @@ +20 Jun 2005: 0.66: ldns-team + Rel. Focus: drill-pre2 uses some functions which are + not in 0.65 + * dnssec_cd bit function was added + * Zone infrastructure was added + * Usual fixes in documentation and code + 13 Jun 2005: 0.65: ldns-team * Repository is online at: http://www.nlnetlabs.nl/ldns/svn/ diff --git a/configure.ac b/configure.ac index 7c64a4d6..732528fc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(libdns, 0.65, libdns@nlnetlabs.nl, libdns) +AC_INIT(libdns, 0.66, libdns@nlnetlabs.nl, libdns) AC_CONFIG_SRCDIR([packet.c]) OURCPPFLAGS='-ansi -pedantic -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600' diff --git a/zone.c b/zone.c index a240a3c4..e1b95e3f 100644 --- a/zone.c +++ b/zone.c @@ -53,6 +53,7 @@ ldns_zone_set_rrs(ldns_zone *z, ldns_rr_list *rrlist) z->_rrs = rrlist; } +#if 0 /** * ixfr function. Work on a ldns_zone and remove and add * the rrs from the rrlist @@ -66,3 +67,4 @@ ldns_zone_ixfr_del_add(ldns_zone *z, ldns_rr_list *del, ldns_rr_list *add) { } +#endif