mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 07:02:04 -04:00
4622. [bug] Remove unnecessary escaping of semicolon in CAA and
URI records. [RT #45216]
This commit is contained in:
parent
6c5c871053
commit
1611ceb8b2
4 changed files with 7 additions and 4 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4622. [bug] Remove unnecessary escaping of semicolon in CAA and
|
||||
URI records. [RT #45216]
|
||||
|
||||
4621. [port] Force alignment of oid arrays to silence loader
|
||||
warnings. [RT #45131]
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ a601.example. 3600 IN A6 128 .
|
|||
afsdb01.example. 3600 IN AFSDB 0 hostname.example.
|
||||
afsdb02.example. 3600 IN AFSDB 65535 .
|
||||
avc.example. 3600 IN AVC "foo:bar"
|
||||
caa01.example. 3600 IN CAA 0 issue "ca.example.net\; policy=ev"
|
||||
caa01.example. 3600 IN CAA 0 issue "ca.example.net; policy=ev"
|
||||
caa02.example. 3600 IN CAA 128 tbs "Unknown"
|
||||
caa03.example. 3600 IN CAA 128 tbs ""
|
||||
cdnskey01.example. 3600 IN CDNSKEY 512 255 1 AQMFD5raczCJHViKtLYhWGz8hMY9UGRuniJDBzC7w0aRyzWZriO6i2od GWWQVucZqKVsENW91IOW4vqudngPZsY3GvQ/xVA8/7pyFj6b7Esga60z yGW6LFe9r8n6paHrlG5ojqf0BaqHT+8=
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ a601.example. 3600 IN A6 128 .
|
|||
afsdb01.example. 3600 IN AFSDB 0 hostname.example.
|
||||
afsdb02.example. 3600 IN AFSDB 65535 .
|
||||
avc.example. 3600 IN AVC "foo:bar"
|
||||
caa01.example. 3600 IN CAA 0 issue "ca.example.net\; policy=ev"
|
||||
caa01.example. 3600 IN CAA 0 issue "ca.example.net; policy=ev"
|
||||
caa02.example. 3600 IN CAA 128 tbs "Unknown"
|
||||
caa03.example. 3600 IN CAA 128 tbs ""
|
||||
cdnskey01.example. 3600 IN CDNSKEY 512 255 1 AQMFD5raczCJHViKtLYhWGz8hMY9UGRuniJDBzC7w0aRyzWZriO6i2od GWWQVucZqKVsENW91IOW4vqudngPZsY3GvQ/xVA8/7pyFj6b7Esga60z yGW6LFe9r8n6paHrlG5ojqf0BaqHT+8=
|
||||
|
|
|
|||
|
|
@ -1594,8 +1594,8 @@ multitxt_totext(isc_region_t *source, isc_buffer_t *target) {
|
|||
tl -= 4;
|
||||
continue;
|
||||
}
|
||||
/* double quote, semi-colon, backslash */
|
||||
if (*sp == 0x22 || *sp == 0x3b || *sp == 0x5c) {
|
||||
/* double quote, backslash */
|
||||
if (*sp == 0x22 || *sp == 0x5c) {
|
||||
if (tl < 2)
|
||||
return (ISC_R_NOSPACE);
|
||||
*tp++ = '\\';
|
||||
|
|
|
|||
Loading…
Reference in a new issue