Fix bug in cachedump format after sldns changes.

git-svn-id: https://unbound.nlnetlabs.nl/svn/trunk@3033 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
wouter 2013-12-05 15:57:16 +00:00
parent 0308628c7f
commit 8af85a6350
2 changed files with 4 additions and 1 deletions

View File

@ -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 */

View File

@ -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.