From: Wouter Wijngaards Date: Mon, 3 Aug 2009 08:46:26 +0000 (+0000) Subject: Fix for Roland, tell why the error happens. X-Git-Tag: release-1.3.3~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b97dbd3c8f68c56a815cf1b129f014da759422c3;p=thirdparty%2Funbound.git Fix for Roland, tell why the error happens. git-svn-id: file:///svn/unbound/trunk@1740 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 5bedd6634..169c3ff63 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +3 August 2009: Wouter + - nicer warning when algorithm not supported, tells you to upgrade. + 27 July 2009: Wouter - Updated unbound-cacti contribution from Dmitriy Demidov, with the queue statistics displayed in its own graph. diff --git a/validator/val_anchor.c b/validator/val_anchor.c index 9c123acaf..1e5ca3af8 100644 --- a/validator/val_anchor.c +++ b/validator/val_anchor.c @@ -915,7 +915,8 @@ anchors_assemble_rrsets(struct val_anchors* anchors) char b[257]; dname_str(ta->name, b); log_warn("trust anchor %s has no supported algorithms," - " the anchor is ignored", b); + " the anchor is ignored (check if you need to" + " upgrade unbound and openssl)", b); (void)rbtree_delete(anchors->tree, &ta->node); } ta = next;