1
0
Fork 0

Change error no data to no name

This commit is contained in:
peterbell10 2017-06-16 11:28:14 +01:00 committed by Lukas Pioch
parent e4b60b6a26
commit 705132011a
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ void cHostnameLookup::Callback(int a_ErrCode, addrinfo * a_Addr)
// If only unsupported families were reported, call the Error handler:
if (!HasResolved)
{
m_Callbacks->OnError(EAI_NODATA, ErrorString(EAI_NODATA));
m_Callbacks->OnError(EAI_NONAME, ErrorString(EAI_NONAME));
}
else
{