]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix spelling of 'telemetry'
authorMark Andrews <marka@isc.org>
Wed, 4 Jul 2018 00:19:53 +0000 (10:19 +1000)
committerEvan Hunt <each@isc.org>
Wed, 11 Jul 2018 01:19:12 +0000 (18:19 -0700)
CHANGES
lib/dns/include/dns/name.h
lib/dns/name.c
lib/dns/tests/name_test.c

diff --git a/CHANGES b/CHANGES
index 7765a3c402e23bf3604901f9d8f3179b69cc2d8d..8858302c00bb3731520359f2b3b40540261aba86 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 
 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.<anchor>/NULL and EDNS KEY-TAG options
                        are logged.  [RT #46124]
 
                        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.
index 74d114e1ef2c9e3679077151cb478108267ec2fb..c4cffb09a8f93b03671ee14c43a10b07883b3bb2 100644 (file)
@@ -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
index 75225f3ee35a3b0a96bc575a1eaa79e6319c30ab..bd2973b96ffad597d0ff33bc2a30289bd317d864 100644 (file)
@@ -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);
index 42613f89b8eb9911c9cdb3408210e190df94368d..f5104bd68f921647537950aae9df59e9527aa4c9 100644 (file)
@@ -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;