BIND 10 trac2586, updated. 8d1f4d45b8998de8ca478a1bb600b8cbb88e4a31 [2586] use !, not %, for a label char smaller than &.
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Feb 11 17:26:45 UTC 2013
The branch, trac2586 has been updated
via 8d1f4d45b8998de8ca478a1bb600b8cbb88e4a31 (commit)
from 9a9b17823a2c57e3013f4f6da055f2a7cc48c289 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8d1f4d45b8998de8ca478a1bb600b8cbb88e4a31
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Mon Feb 11 09:24:45 2013 -0800
[2586] use !, not %, for a label char smaller than &.
% seems to (possibly) cause an unexpected side effect in an SQL statement.
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/tests/query_unittest.cc | 2 +-
src/bin/auth/tests/testdata/example-base-inc.zone | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/tests/query_unittest.cc b/src/bin/auth/tests/query_unittest.cc
index f1b00d0..68984f5 100644
--- a/src/bin/auth/tests/query_unittest.cc
+++ b/src/bin/auth/tests/query_unittest.cc
@@ -1377,7 +1377,7 @@ TEST_P(QueryTest, nxdomainWithNSEC2) {
// is derived from the next domain of the NSEC that proves NXDOMAIN, and
// the NSEC to provide the non existence of wildcard is different from
// the first NSEC.
- query.process(*list_, Name("%.no.example.com"), qtype, response,
+ query.process(*list_, Name("!.no.example.com"), qtype, response,
true);
responseCheck(response, Rcode::NXDOMAIN(), AA_FLAG, 0, 6, 0,
NULL, (string(soa_minttl_txt) +
diff --git a/src/bin/auth/tests/testdata/example-base-inc.zone b/src/bin/auth/tests/testdata/example-base-inc.zone
index 9fc01f4..5949148 100644
--- a/src/bin/auth/tests/testdata/example-base-inc.zone
+++ b/src/bin/auth/tests/testdata/example-base-inc.zone
@@ -150,7 +150,7 @@ t.example.com. 3600 IN RRSIG NSEC 5 3 3600 20000101000000 20000201000000 12345 e
;; the best possible wildcard is below the "next domain" of the NSEC RR that
;; proves the NXDOMAIN, i.e.,
;; mx.example.com. (exist)
-;; %.no.example.com. (qname, NXDOMAIN)
+;; !.no.example.com. (qname, NXDOMAIN)
;; &.no.example.com. (exist)
;; *.no.example.com. (best possible wildcard, not exist)
;var=no_txt
More information about the bind10-changes
mailing list