Fix some broken logic in Path::reliable()

This commit is contained in:
Adam Ierymenko 2015-10-19 15:11:43 -07:00
parent 9150778757
commit 0b2e5ed499

View File

@ -114,7 +114,9 @@ public:
*/
inline bool reliable() const throw()
{
return ( (_addr.ss_family == AF_INET6) || ((_ipScope != InetAddress::IP_SCOPE_GLOBAL)&&(_ipScope != InetAddress::IP_SCOPE_PSEUDOPRIVATE)) );
if (_addr.ss_family == AF_INET)
return ((_ipScope != InetAddress::IP_SCOPE_GLOBAL)&&(_ipScope != InetAddress::IP_SCOPE_PSEUDOPRIVATE));
return true;
}
/**