]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Fri, 21 Sep 2001 20:48:06 +0000 (20:48 +0000)
committerAndreas Gustafsson <source@isc.org>
Fri, 21 Sep 2001 20:48:06 +0000 (20:48 +0000)
1000.   [bug]           BIND 8 compatibility: accept "HESIOD" as a alias
                        for class "HS".  [RT #1759]

CHANGES
lib/dns/rdata.c

diff --git a/CHANGES b/CHANGES
index 0c7e6dd6f8081aeb6f0e49fd3735c9ef3df37cbb..6657118edd598c14c78e456d8158a70d42ddddfe 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,9 @@
 
 1004.  [port]          Deal with recvfrom() returning EHOSTDOWN. [RT #1770]
 
+1000.  [bug]           BIND 8 compatibility: accept "HESIOD" as an alias
+                       for class "HS". [RT #1759]
+
  987.  [bug]           "dig -help" didn't show "+[no]stats".
 
  986.  [bug]           "dig +noall" failed to clear stats and command
index e1a7f536e57c81eeefb8be9c8dadfdea3c62e16c..74d7bd15a4af039fc00e01744276682a36b1d115 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: rdata.c,v 1.137.2.1 2001/01/09 22:44:03 bwelling Exp $ */
+/* $Id: rdata.c,v 1.137.2.2 2001/09/21 20:48:06 gson Exp $ */
 
 #include <config.h>
 #include <ctype.h>
@@ -1022,6 +1022,7 @@ dns_rdataclass_fromtext(dns_rdataclass_t *classp, isc_textregion_t *source) {
                break;
        case 'h':
                COMPARE("hs", dns_rdataclass_hs);
+               COMPARE("hesiod", dns_rdataclass_hs);
                break;
        case 'i':
                COMPARE("in", dns_rdataclass_in);