fix wrong variable name

This commit is contained in:
Alden Torres 2018-04-04 11:40:31 -04:00 committed by Arvid Norberg
parent 16f1deb3ec
commit 0d9862a8dd
1 changed files with 1 additions and 1 deletions

View File

@ -5823,7 +5823,7 @@ namespace aux {
for (auto const& addr : addresses)
{
#if !TORRENT_USE_IPV6
if (!i->is_v4()) continue;
if (!addr.is_v4()) continue;
#endif
// router nodes should be added before the DHT is started (and bootstrapped)
udp::endpoint ep(addr, std::uint16_t(port));