cosmetics in resolve_host

Originally committed as revision 8833 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Alex Beregszaszi 2007-04-26 18:00:28 +00:00
parent 0913873e5b
commit a33cc9511b
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ int resolve_host(struct in_addr *sin_addr, const char *hostname)
{
struct hostent *hp;
if ((inet_aton(hostname, sin_addr)) == 0) {
if (!inet_aton(hostname, sin_addr)) {
hp = gethostbyname(hostname);
if (!hp)
return -1;