From: Wouter Wijngaards Date: Thu, 5 Dec 2013 15:57:16 +0000 (+0000) Subject: Fix bug in cachedump format after sldns changes. X-Git-Tag: release-1.4.22rc1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b07b655cefae27d33cd05333c641a8f1ce17e7b;p=thirdparty%2Funbound.git Fix bug in cachedump format after sldns changes. git-svn-id: file:///svn/unbound/trunk@3033 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/daemon/cachedump.c b/daemon/cachedump.c index a5d04a76f..8c8fec542 100644 --- a/daemon/cachedump.c +++ b/daemon/cachedump.c @@ -68,7 +68,7 @@ dump_rrset_line(SSL* ssl, struct ub_packed_rrset_key* k, time_t now, size_t i) if(!packed_rr_to_string(k, i, now, s, sizeof(s))) { return ssl_printf(ssl, "BADRR\n"); } - return ssl_printf(ssl, "%s\n", s); + return ssl_printf(ssl, "%s", s); } /** dump rrset key and data info */ diff --git a/doc/Changelog b/doc/Changelog index c603d606a..f5cd6a5fc 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +5 Dec 2013: Wouter + - Fix bug in cachedump that uses sldns. + 3 Dec 2013: Wouter - Fix sldns to use sldns_ prefix for all ldns_ variables. - Fix windows compile to compile with sldns.