]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Fri, 21 Sep 2001 20:46:35 +0000 (20:46 +0000)
committerAndreas Gustafsson <source@isc.org>
Fri, 21 Sep 2001 20:46:35 +0000 (20:46 +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 49bdc8fcf94a25178ba0f498b18bd6abeff5b0d3..0e054cc4c33d75107eea3b5d678e05aca0c2fe4b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -23,6 +23,9 @@
                        WSACONNRESET error when a client was timing out
                        the request and closing its socket. [RT #1745]
 
+1000.  [bug]           BIND 8 compatibility: accept "HESIOD" as an alias
+                       for class "HS". [RT #1759]
+
        --- 9.2.0rc3 released ---
 
  990.  [bug]           The rndc-confgen man page was not installed.
index 4e272e37f182d3cc6170ee8999c18dd68d180c97..56d2b0fd32e234f95b521ff123ca4defe5ddbf2f 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: rdata.c,v 1.147 2001/08/08 22:54:41 gson Exp $ */
+/* $Id: rdata.c,v 1.147.2.1 2001/09/21 20:46:35 gson Exp $ */
 
 #include <config.h>
 #include <ctype.h>
@@ -1053,6 +1053,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);