1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

[network] Compilation fix

This commit is contained in:
Witold Filipczyk 2022-05-04 16:18:46 +02:00
parent cdccaeaf21
commit a753253b10

View File

@ -19,6 +19,9 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_WS2TCPIP_H
#include <ws2tcpip.h> /* socklen_t for MinGW */
#endif
/* Go and say 'thanks' to BSD. */
#ifdef HAVE_NETINET_IN_H
@ -180,6 +183,7 @@ do_real_lookup(char *name, struct sockaddr_storage **addrs, int *addrno,
if (is_ip_address(name, strlen(name)) && inet_aton(name, &inp))
hostent = gethostbyaddr(&inp, sizeof(inp), AF_INET);
#endif
}
if (!hostent)
#endif