From 03e5afa4c09d57f85a007149999619e87f501138 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Fri, 8 Jan 2010 17:15:36 +0000 Subject: [PATCH] 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] --- CHANGES | 7 +++++++ lib/dns/dst_parse.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index ec775f0aa3..d9a1cbe923 100644 --- 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 diff --git a/lib/dns/dst_parse.c b/lib/dns/dst_parse.c index 5fc5638193..5b3056c093 100644 --- a/lib/dns/dst_parse.c +++ b/lib/dns/dst_parse.c @@ -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 @@ -62,7 +62,7 @@ static const char *timetags[TIMING_NTAGS] = { "Publish:", "Activate:", "Revoke:", - "Unpublish:", + "Inactive:", "Delete:", "DSPublish:" };