]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorBrian Wellington <source@isc.org>
Thu, 19 Apr 2001 18:56:08 +0000 (18:56 +0000)
committerBrian Wellington <source@isc.org>
Thu, 19 Apr 2001 18:56:08 +0000 (18:56 +0000)
 811.   [bug]           Parentheses were not quoted in zone dumps. [RT #1194]

CHANGES
lib/dns/name.c

diff --git a/CHANGES b/CHANGES
index 87363747d74f826e07a1252d6f270250b4bc44a4..222980293aa8ff1d50b58dac239c22643fbed24c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,6 @@
 
+ 811.  [bug]           Parentheses 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]
 
index 9abfbc51da71c9a07e9256423690204961bf9373..fcf2647219b581587229ffac0477965439b5dcdf 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: name.c,v 1.110.2.3 2001/01/22 18:23:11 gson Exp $ */
+/* $Id: name.c,v 1.110.2.4 2001/04/19 18:56:08 bwelling Exp $ */
 
 #include <config.h>
 
@@ -1776,6 +1776,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: /* '\\' */