]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2835. [bug] Key inactivity dates were inadvertently stored in
authorEvan Hunt <each@isc.org>
Fri, 8 Jan 2010 17:15:36 +0000 (17:15 +0000)
committerEvan Hunt <each@isc.org>
Fri, 8 Jan 2010 17:15:36 +0000 (17:15 +0000)
the private key file with the outdated tag
"Unpublish" rather than "Inactive".  This has been
fixed; however, any existing keys that had Inactive
dates set will now need to have them reset, using
'dnssec-settime -I'. [RT #20868]

CHANGES
lib/dns/dst_parse.c

diff --git a/CHANGES b/CHANGES
index ec775f0aa3d82c5e9d63983bbbf1374c860ad820..d9a1cbe9233f06afd30626c036003594b218ef65 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,10 @@
+2835.  [bug]           Key inactivity dates were inadvertently stored in
+                       the private key file with the outdated tag
+                       "Unpublish" rather than "Inactive".  This has been
+                       fixed; however, any existing keys that had Inactive
+                       dates set will now need to have them reset, using
+                       'dnssec-settime -I'. [RT #20868]
+
 2834.  [bug]           HMAC-SHA* keys that were longer than the algorithm
                        digest length were used incorrectly, leading to
                        interoperability problems with other DNS
index 5fc5638193901d0978e2920226a2cf0e91f2147b..5b3056c09342a56d6920a2c973d2f3ca5ee92e4c 100644 (file)
@@ -31,7 +31,7 @@
 
 /*%
  * Principal Author: Brian Wellington
- * $Id: dst_parse.c,v 1.23 2009/10/26 21:18:24 each Exp $
+ * $Id: dst_parse.c,v 1.24 2010/01/08 17:15:36 each Exp $
  */
 
 #include <config.h>
@@ -62,7 +62,7 @@ static const char *timetags[TIMING_NTAGS] = {
        "Publish:",
        "Activate:",
        "Revoke:",
-       "Unpublish:",
+       "Inactive:",
        "Delete:",
        "DSPublish:"
 };