]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fixed incorrect TAG_HMACSHA256_BITS value [rt18047]
authorEvan Hunt <each@isc.org>
Thu, 15 May 2008 00:50:50 +0000 (00:50 +0000)
committerEvan Hunt <each@isc.org>
Thu, 15 May 2008 00:50:50 +0000 (00:50 +0000)
CHANGES
lib/dns/dst_parse.h

diff --git a/CHANGES b/CHANGES
index 54e63d761f401511330c1af53bdae73f534839b6..0dd4f6e45e9dff74b4c11db57a2aa5d2e56c2948 100644 (file)
--- 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
index 0fd474fd53a4a43d27a5fdcd423677925863785d..10104cc6a78329cb3d2e031f5156ded06815d384 100644 (file)
@@ -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)