mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-18 20:52:53 -05:00
Changelog entry for #86 and whitespace fix.
- Merge #86 from psquarejho: Added -b source address option to smallapp/unbound-anchor.c.
This commit is contained in:
parent
3d91a9fd56
commit
8bfbd81fec
2 changed files with 6 additions and 5 deletions
|
|
@ -2,6 +2,8 @@
|
|||
- Merge #90 from vcunat: fix build with nettle-3.5.
|
||||
- Merge 1.9.4 release with fix for vulnerability CVE-2019-16866.
|
||||
- Continue with development of 1.9.5.
|
||||
- Merge #86 from psquarejho: Added -b source address option to
|
||||
smallapp/unbound-anchor.c.
|
||||
|
||||
26 September 2019: Wouter
|
||||
- Merge #87 from hardfalcon: Fix contrib/unbound.service.in,
|
||||
|
|
|
|||
|
|
@ -1941,12 +1941,11 @@ do_certupdate(const char* root_anchor_file, const char* root_cert_file,
|
|||
/* lookup A, AAAA for the urlname (or parse urlname if IP address) */
|
||||
ip_list = resolve_name(urlname, port, res_conf, root_hints, debugconf,
|
||||
srcaddr, ip4only, ip6only);
|
||||
|
||||
if(srcaddr && !(src = parse_ip_addr(srcaddr, 0))) {
|
||||
if(verb) printf("cannot parse source address: %s\n", srcaddr);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
if(srcaddr && !(src = parse_ip_addr(srcaddr, 0))) {
|
||||
if(verb) printf("cannot parse source address: %s\n", srcaddr);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
#ifdef USE_WINSOCK
|
||||
if(1) { /* libunbound finished, startup WSA for the https connection */
|
||||
|
|
|
|||
Loading…
Reference in a new issue