Commit c693af19 authored by Rostislav Pehlivanov's avatar Rostislav Pehlivanov

libavformat/network: fix function duplication

Since the function used to be exposed for ffserver's sake, it was renamed
to the same name as a system's aton function which caused a collision.
Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
parent 7c6125cb
......@@ -60,11 +60,6 @@ static int inet_aton(const char *str, struct in_addr *add)
return 1;
}
#else
static int inet_aton(const char *str, struct in_addr *add)
{
return inet_aton(str, add);
}
#endif /* !HAVE_INET_ATON */
#if !HAVE_GETADDRINFO
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment