fixed typo

This commit is contained in:
orignal 2021-01-24 15:44:54 -05:00
parent 2e0019c8c8
commit 2d998aba43

View File

@ -399,7 +399,7 @@ namespace transport
if (context.SupportsV6 ()) if (context.SupportsV6 ())
{ {
address = peer.router->GetPublishedNTCP2V6Address (); address = peer.router->GetPublishedNTCP2V6Address ();
if (address && m_CheckReserved && !i2p::util::net::IsInReservedRange(address->host)) if (address && m_CheckReserved && i2p::util::net::IsInReservedRange(address->host))
address = nullptr; address = nullptr;
} }
peer.numAttempts++; peer.numAttempts++;
@ -409,7 +409,7 @@ namespace transport
if (context.SupportsV4 () && !peer.router->IsUnreachable ()) if (context.SupportsV4 () && !peer.router->IsUnreachable ())
{ {
address = peer.router->GetPublishedNTCP2V4Address (); address = peer.router->GetPublishedNTCP2V4Address ();
if (address && m_CheckReserved && !i2p::util::net::IsInReservedRange(address->host)) if (address && m_CheckReserved && i2p::util::net::IsInReservedRange(address->host))
address = nullptr; address = nullptr;
} }
peer.numAttempts++; peer.numAttempts++;