freebsd-ports/security/nmap/files/patch-libdnet-stripped_src_intf.c
Olli Hauer 89768ae6bb - update to 7.60
- regenerate patches with makepatch

PR:		ports/221522
2018-01-30 21:02:54 +00:00

11 lines
441 B
C

--- libdnet-stripped/src/intf.c.orig 2016-07-27 20:11:27 UTC
+++ libdnet-stripped/src/intf.c
@@ -163,7 +163,7 @@ intf_open(void)
#if defined(SIOCGLIFCONF) || defined(SIOCGIFNETMASK_IN6) || defined(SIOCGIFNETMASK6)
if ((intf->fd6 = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
# ifdef EPROTONOSUPPORT
- if (errno != EPROTONOSUPPORT)
+ if (errno != EPROTONOSUPPORT && errno != EAFNOSUPPORT)
# endif
return (intf_close(intf));
}