From: Evan Hunt Date: Thu, 15 May 2008 00:50:50 +0000 (+0000) Subject: fixed incorrect TAG_HMACSHA256_BITS value [rt18047] X-Git-Tag: v9.5.0~7 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=42a1be348196e4111afd26e8537bd01dc2edb515;p=thirdparty%2Fbind9.git fixed incorrect TAG_HMACSHA256_BITS value [rt18047] --- diff --git a/CHANGES b/CHANGES index 54e63d761f4..0dd4f6e45e9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +2372. [bug] fixed incorrect TAG_HMACSHA256_BITS value [RT #18047] + 2371. [doc] add +nsid option to dig man page. [RT #18039] 2370. [bug] "rndc freeze" could trigger an assertion in named diff --git a/lib/dns/dst_parse.h b/lib/dns/dst_parse.h index 0fd474fd53a..10104cc6a78 100644 --- a/lib/dns/dst_parse.h +++ b/lib/dns/dst_parse.h @@ -29,7 +29,7 @@ * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: dst_parse.h,v 1.8 2007/08/28 07:20:42 tbox Exp $ */ +/* $Id: dst_parse.h,v 1.8.92.1 2008/05/15 00:50:50 each Exp $ */ /*! \file */ #ifndef DST_DST_PARSE_H @@ -88,7 +88,7 @@ #define HMACSHA256_NTAGS 2 #define TAG_HMACSHA256_KEY ((DST_ALG_HMACSHA256 << TAG_SHIFT) + 0) -#define TAG_HMACSHA256_BITS ((DST_ALG_HMACSHA224 << TAG_SHIFT) + 1) +#define TAG_HMACSHA256_BITS ((DST_ALG_HMACSHA256 << TAG_SHIFT) + 1) #define HMACSHA384_NTAGS 2 #define TAG_HMACSHA384_KEY ((DST_ALG_HMACSHA384 << TAG_SHIFT) + 0)