From: Mark Andrews Date: Wed, 4 Jul 2018 00:19:53 +0000 (+1000) Subject: fix spelling of 'telemetry' X-Git-Tag: v9.13.3~118^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f18b6a09a9edb1d6e32cb4b213d61f53726331f;p=thirdparty%2Fbind9.git fix spelling of 'telemetry' --- diff --git a/CHANGES b/CHANGES index 7765a3c402e..8858302c00b 100644 --- a/CHANGES +++ b/CHANGES @@ -818,8 +818,8 @@ 4760. [func] Add glue cache statistics counters. [RT #46028] -4759. [func] Add logging channel "trust-anchor-telementry" to - record trust-anchor-telementry in incoming requests. +4759. [func] Add logging channel "trust-anchor-telemetry" to + record trust-anchor-telemetry in incoming requests. Both _ta-XXXX./NULL and EDNS KEY-TAG options are logged. [RT #46124] @@ -888,10 +888,10 @@ tests when running on terminals that support them. [RT #45977] -4744. [bug] Suppress trust-anchor-telementry queries if +4744. [bug] Suppress trust-anchor-telemetry queries if validation is disabled. [RT #46131] -4743. [func] Exclude trust-anchor-telementry queries from +4743. [func] Exclude trust-anchor-telemetry queries from synth-from-dnssec processing. [RT #46123] 4742. [func] Synthesis of responses from DNSSEC-verified records. diff --git a/lib/dns/include/dns/name.h b/lib/dns/include/dns/name.h index 74d114e1ef2..c4cffb09a8f 100644 --- a/lib/dns/include/dns/name.h +++ b/lib/dns/include/dns/name.h @@ -1320,7 +1320,7 @@ dns_name_isula(const dns_name_t *owner); isc_boolean_t dns_name_istat(const dns_name_t *name); /* - * Determine if 'name' is a potential 'trust-anchor-telementry' name. + * Determine if 'name' is a potential 'trust-anchor-telemetry' name. */ ISC_LANG_ENDDECLS diff --git a/lib/dns/name.c b/lib/dns/name.c index 75225f3ee35..bd2973b96ff 100644 --- a/lib/dns/name.c +++ b/lib/dns/name.c @@ -2687,7 +2687,7 @@ dns_name_istat(const dns_name_t *name) { /* * Is there at least one trust anchor reported and is the - * label length consistent with a trust-anchor-telementry label. + * label length consistent with a trust-anchor-telemetry label. */ if ((len < 8) || (len - 3) % 5 != 0) { return (ISC_FALSE); diff --git a/lib/dns/tests/name_test.c b/lib/dns/tests/name_test.c index 42613f89b8e..f5104bd68f9 100644 --- a/lib/dns/tests/name_test.c +++ b/lib/dns/tests/name_test.c @@ -278,7 +278,7 @@ ATF_TC_BODY(compression, tc) { ATF_TC(istat); ATF_TC_HEAD(istat, tc) { - atf_tc_set_md_var(tc, "descr", "is trust-anchor-telementry test"); + atf_tc_set_md_var(tc, "descr", "is trust-anchor-telemetry test"); } ATF_TC_BODY(istat, tc) { dns_fixedname_t fixed;