Fixed apparent typo.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2002-01-20 22:00:45 +00:00
parent a4a162522b
commit d75262dbfe

View File

@@ -1491,7 +1491,7 @@ GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname)
{
#elif defined(HAVE_INET_ADDR)
addr->s_addr = inet_addr(hostname);
if ( (addr->s_addr == -1 )
if ( addr->s_addr == -1 )
{
#else
/* Use gethostbyname by default */