mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-17 12:12:55 -05:00
- Fix #1117: spelling errors, from Robert Edmonds
git-svn-id: file:///svn/unbound/trunk@3877 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
b587c7f72d
commit
0b3138e1bf
9 changed files with 9 additions and 8 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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];
|
||||
|
|
|
|||
2
testdata/val_cnamewctonodata.rpl
vendored
2
testdata/val_cnamewctonodata.rpl
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
testdata/val_nsec3_wcany.rpl
vendored
2
testdata/val_nsec3_wcany.rpl
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
testdata/val_nsec3_wcany_nodeny.rpl
vendored
2
testdata/val_nsec3_wcany_nodeny.rpl
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue