]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Fix for Roland, tell why the error happens.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 3 Aug 2009 08:46:26 +0000 (08:46 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 3 Aug 2009 08:46:26 +0000 (08:46 +0000)
git-svn-id: file:///svn/unbound/trunk@1740 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
validator/val_anchor.c

index 5bedd6634a3d68d83f74c7a6df6c9d16445975bc..169c3ff639dbef0300d85ecc86c185ad960001bb 100644 (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.
index 9c123acafbf99d479399304669aa936f7d111429..1e5ca3af825506f12ebeff9283f05164ee717750 100644 (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;