From: Wouter Wijngaards Date: Tue, 6 Jun 2017 09:33:09 +0000 (+0000) Subject: - renumbering B-Root's IPv6 address to 2001:500:200::b. X-Git-Tag: release-1.6.4rc1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=124f8d57ab1a6567d855ab3c8fb14836830db1ea;p=thirdparty%2Funbound.git - renumbering B-Root's IPv6 address to 2001:500:200::b. git-svn-id: file:///svn/unbound/trunk@4206 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 55d1c0852..3c5816277 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 6 June 2017: Wouter - Add an explicit type cast for TCP FASTOPEN fix. + - renumbering B-Root's IPv6 address to 2001:500:200::b. 1 June 2017: Ralph - Fix #1274: automatically trim chroot path from dnscrypt key/cert paths diff --git a/iterator/iter_hints.c b/iterator/iter_hints.c index 74869d355..47af96687 100644 --- a/iterator/iter_hints.c +++ b/iterator/iter_hints.c @@ -144,7 +144,7 @@ compile_time_root_prime(int do_ip4, int do_ip6) } if(do_ip6) { if(!ah(dp, "A.ROOT-SERVERS.NET.", "2001:503:ba3e::2:30")) goto failed; - if(!ah(dp, "B.ROOT-SERVERS.NET.", "2001:500:84::b")) goto failed; + if(!ah(dp, "B.ROOT-SERVERS.NET.", "2001:500:200::b")) goto failed; if(!ah(dp, "C.ROOT-SERVERS.NET.", "2001:500:2::c")) goto failed; if(!ah(dp, "D.ROOT-SERVERS.NET.", "2001:500:2d::d")) goto failed; if(!ah(dp, "E.ROOT-SERVERS.NET.", "2001:500:a8::e")) goto failed;