diff --git a/CHANGES b/CHANGES index 818ae3a5d4..13c178e926 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,6 @@ + 811. [bug] Parantheses were not quoted in zone dumps. [RT #1194] + 810. [bug] The signer name in SIG records was not properly downcased when signing/verifying records. [RT #1186] diff --git a/lib/dns/name.c b/lib/dns/name.c index a6d419c519..d8ce6b0eed 100644 --- a/lib/dns/name.c +++ b/lib/dns/name.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: name.c,v 1.123 2001/03/27 23:43:09 bwelling Exp $ */ +/* $Id: name.c,v 1.124 2001/04/19 18:39:42 gson Exp $ */ #include @@ -1753,6 +1753,8 @@ dns_name_totext(dns_name_t *name, isc_boolean_t omit_final_dot, c = *ndata; switch (c) { case 0x22: /* '"' */ + case 0x28: /* '(' */ + case 0x29: /* ')' */ case 0x2E: /* '.' */ case 0x3B: /* ';' */ case 0x5C: /* '\\' */