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:
W.C.A. Wijngaards 2019-10-03 16:22:42 +02:00
parent 3d91a9fd56
commit 8bfbd81fec
2 changed files with 6 additions and 5 deletions

View file

@ -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,

View file

@ -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 */