]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix #1117: spelling errors, from Robert Edmonds
authorRalph Dolmans <ralph@nlnetlabs.nl>
Wed, 5 Oct 2016 09:56:05 +0000 (09:56 +0000)
committerRalph Dolmans <ralph@nlnetlabs.nl>
Wed, 5 Oct 2016 09:56:05 +0000 (09:56 +0000)
git-svn-id: file:///svn/unbound/trunk@3877 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
doc/libunbound.3.in
doc/unbound-anchor.8.in
testcode/asynclook.c
testdata/val_cnamewctonodata.rpl
testdata/val_nsec3_wcany.rpl
testdata/val_nsec3_wcany_nodeny.rpl
validator/val_nsec3.c
validator/val_sigcrypt.c

index f0f4402eaf8499535990460c0c149edcb9bcb568..baec77ee9a4c8fc356a88f54b4a9b2af145f6813 100644 (file)
@@ -1,5 +1,6 @@
 5 October 2016: Ralph
        - Added views functionality.
+       - Fix #1117: spelling errors, from Robert Edmonds.
 
 30 September 2016: Wouter
        - Fix Nits for 1.5.10 reported by Dag-Erling Smorgrav.
index 88b728e1942a1945aa3c8820d678e9e813d8a56e..4bdf7fd86249179559eb390dbdac1926f438c172 100644 (file)
@@ -180,7 +180,7 @@ and
 .B ub_ctx_hosts
 to read them.
 Before you call this, use the openssl functions CRYPTO_set_id_callback and
-CRYPTO_set_locking_callback to set up asyncronous operation if you use
+CRYPTO_set_locking_callback to set up asynchronous operation if you use
 lib openssl (the application calls these functions once for initialisation).
 Openssl 1.0.0 or later uses the CRYPTO_THREADID_set_callback function.
 .TP
index 5f17b614cb2495fb2009722add2f1b027190263b..02a3e781b0c7c9539060f62761c283bff9dd5922 100644 (file)
@@ -67,7 +67,7 @@ List the builtin root key and builtin root update certificate on stdout.
 .B \-u \fIname
 The server name, it connects to https://name.  Specify without https:// prefix.
 The default is "data.iana.org".  It connects to the port specified with \-P.
-You can pass an IPv4 addres or IPv6 address (no brackets) if you want.
+You can pass an IPv4 address or IPv6 address (no brackets) if you want.
 .TP
 .B \-x \fIpath
 The pathname to the root\-anchors.xml file on the server. (forms URL with \-u).
index 43e1dccf5b7845328a28c9122bc3f4f7a68fd1b3..96cb2e3b26132042e81bbe0a9c877aa3a4e40279 100644 (file)
@@ -470,7 +470,7 @@ int main(int argc, char** argv)
                return 1;
        }
 
-       /* perform asyncronous calls */
+       /* perform asynchronous calls */
        num_wait = argc;
        for(i=0; i<argc; i++) {
                lookups[i].name = argv[i];
index 9c3928a1931777c75ec11b0cccf8d5a1a6c6a2d4..83aec7a025e8d9b7bda14098afc04b133dabedc3 100644 (file)
@@ -11,7 +11,7 @@ stub-zone:
        stub-addr: 193.0.14.129         # K.ROOT-SERVERS.NET.
 CONFIG_END
 
-SCENARIO_BEGIN Test validator with wilcard cname to nodata
+SCENARIO_BEGIN Test validator with wildcard cname to nodata
 
 ; K.ROOT-SERVERS.NET.
 RANGE_BEGIN 0 100
index fff0aa7cd4d058e9b5b3df23b510ccb60a96853f..37074a6a6e0f087e642643ab7264d39a41a3f1f0 100644 (file)
@@ -10,7 +10,7 @@ stub-zone:
        stub-addr: 193.0.14.129         # K.ROOT-SERVERS.NET.
 CONFIG_END
 
-SCENARIO_BEGIN Test validator with NSEC3 wilcard qtype ANY response.
+SCENARIO_BEGIN Test validator with NSEC3 wildcard qtype ANY response.
 
 ; K.ROOT-SERVERS.NET.
 RANGE_BEGIN 0 100
index 9215ccc04a4ddbe4822086028d8cbf2945813225..080f086c8ea5fce16d9c89388772818bfc852205 100644 (file)
@@ -10,7 +10,7 @@ stub-zone:
        stub-addr: 193.0.14.129         # K.ROOT-SERVERS.NET.
 CONFIG_END
 
-SCENARIO_BEGIN Test validator with NSEC3 wilcard qtype ANY without denial.
+SCENARIO_BEGIN Test validator with NSEC3 wildcard qtype ANY without denial.
 
 ; K.ROOT-SERVERS.NET.
 RANGE_BEGIN 0 100
index 22867d170d7dc0542ec1b7743d5eab4946bd6765..cd850c0982487fd9a8f79d14501c3607f0f29921 100644 (file)
@@ -1180,7 +1180,7 @@ nsec3_do_prove_nodata(struct module_env* env, struct nsec3_filter* flt,
                        nsec3_has_type(rrset, rr, LDNS_RR_TYPE_NS) &&
                        !nsec3_has_type(rrset, rr, LDNS_RR_TYPE_SOA)) {
                        verbose(VERB_ALGO, "nsec3 nodata proof: matching "
-                               "wilcard is a delegation, bogus");
+                               "wildcard is a delegation, bogus");
                        return sec_status_bogus;
                }
                /* everything is peachy keen, except for optout spans */
index e60f3f9369c65b768469f89a0e1f63dba889346d..c79a73d2a1cce2a8e69e863287a7000aa0d07ec4 100644 (file)
@@ -1291,7 +1291,7 @@ adjust_ttl(struct val_env* ve, uint32_t unow,
         */
        if(MIN_TTL > (time_t)origttl && d->ttl > MIN_TTL) {
                verbose(VERB_QUERY, "rrset TTL larger than original and minimum"
-                       " TTL, adjusting TTL downwards to mimimum ttl");
+                       " TTL, adjusting TTL downwards to minimum ttl");
                d->ttl = MIN_TTL;
        }
        else if(MIN_TTL <= origttl && d->ttl > (time_t)origttl) {