]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/os_support.c
libavformat: unexpose the ff_inet_aton function
[ffmpeg] / libavformat / os_support.c
index 47445854c61b009b5787cb7e9cca7c8b7e5a2b8d..6bdfc0409784a6b883719f015b8dd207520a493f 100644 (file)
@@ -46,7 +46,7 @@
 #if !HAVE_INET_ATON
 #include <stdlib.h>
 
-int ff_inet_aton(const char *str, struct in_addr *add)
+static int inet_aton(const char *str, struct in_addr *add)
 {
     unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
 
@@ -61,7 +61,7 @@ int ff_inet_aton(const char *str, struct in_addr *add)
     return 1;
 }
 #else
-int ff_inet_aton(const char *str, struct in_addr *add)
+static int inet_aton(const char *str, struct in_addr *add)
 {
     return inet_aton(str, add);
 }
@@ -82,7 +82,7 @@ int ff_getaddrinfo(const char *node, const char *service,
     sin->sin_family = AF_INET;
 
     if (node) {
-        if (!ff_inet_aton(node, &sin->sin_addr)) {
+        if (!inet_aton(node, &sin->sin_addr)) {
             if (hints && (hints->ai_flags & AI_NUMERICHOST)) {
                 av_free(sin);
                 return EAI_FAIL;