From: Wouter Wijngaards Date: Thu, 5 Nov 2009 19:22:50 +0000 (+0000) Subject: better error text. X-Git-Tag: release-1.4.0rc1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=463d7e09c57d9033043f75d7640a306fbbe603a5;p=thirdparty%2Funbound.git better error text. git-svn-id: file:///svn/unbound/trunk@1891 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 41673f54c..24a324195 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +5 November 2009: Wouter + - lint fixes and portability tests. + - better error text for multiple domain keys in one autotrust file. + 2 November 2009: Wouter - Fix bug where autotrust does not work when started with a DS. - Updated GOST unit tests for unofficial algorithm number 249 diff --git a/validator/autotrust.c b/validator/autotrust.c index d3389d655..cf0b52d23 100644 --- a/validator/autotrust.c +++ b/validator/autotrust.c @@ -803,7 +803,8 @@ int autr_read_file(struct val_anchors* anchors, const char* nm) continue; } if(tp && tp != tp2) { - log_err("file %s has mismatching data inside", nm); + log_err("file %s has mismatching data inside: " + "remove keys for other domain names", nm); fclose(fd); ldns_rdf_deep_free(origin); ldns_rdf_deep_free(prev);