2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 05:28:00 +00:00

811. [bug] Parantheses were not quoted in zone dumps. [RT #1194]

This commit is contained in:
Andreas Gustafsson 2001-04-19 18:39:42 +00:00
parent 92da55299b
commit cedd0ab1e8
2 changed files with 5 additions and 1 deletions

View File

@ -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]

View File

@ -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 <config.h>
@ -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: /* '\\' */