fix compiler warning "suggest explicit braces to avoid ambiguous "else"
[-Wparentheses]" in net.cpp
This commit is contained in:
parent
be8651dde7
commit
f8e4d43be7
1 changed files with 4 additions and 0 deletions
|
@ -1585,12 +1585,16 @@ void StartNode(void* parg)
|
||||||
{
|
{
|
||||||
vector<CNetAddr> vaddr;
|
vector<CNetAddr> vaddr;
|
||||||
if (LookupHost(pszHostName, vaddr))
|
if (LookupHost(pszHostName, vaddr))
|
||||||
|
{
|
||||||
BOOST_FOREACH (const CNetAddr &addr, vaddr)
|
BOOST_FOREACH (const CNetAddr &addr, vaddr)
|
||||||
|
{
|
||||||
if (!addr.IsLocal())
|
if (!addr.IsLocal())
|
||||||
{
|
{
|
||||||
addrLocalHost.SetIP(addr);
|
addrLocalHost.SetIP(addr);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
// Get local host ip
|
// Get local host ip
|
||||||
|
|
Loading…
Reference in a new issue