dns: implement tcp fallback in __res_msend query core
[musl] / src / network / inet_ntop.c
index ca33343..4bfef2c 100644 (file)
@@ -1,7 +1,5 @@
 #include <sys/socket.h>
-#include <netinet/in.h>
 #include <arpa/inet.h>
-#include <netdb.h>
 #include <errno.h>
 #include <stdio.h>
 #include <string.h>
@@ -38,7 +36,7 @@ const char *inet_ntop(int af, const void *restrict a0, char *restrict s, socklen
                        j = strspn(buf+i, ":0");
                        if (j>max) best=i, max=j;
                }
-               if (max>2) {
+               if (max>3) {
                        buf[best] = buf[best+1] = ':';
                        memmove(buf+best+2, buf+best+max, i-best-max+1);
                }