Fix for Roland, tell why the error happens.

git-svn-id: file:///svn/unbound/trunk@1740 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2009-08-03 08:46:26 +00:00
parent 112df5ab6c
commit b97dbd3c8f
2 changed files with 5 additions and 1 deletions

View file

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

View file

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