mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 11:44:44 +00:00
cosmetics in resolve_host
Originally committed as revision 8833 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0913873e5b
commit
a33cc9511b
@ -33,11 +33,11 @@ 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;
|
||||
memcpy (sin_addr, hp->h_addr, sizeof(struct in_addr));
|
||||
memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user