summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2017-07-30 18:16:15 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2017-07-30 18:16:15 +0000
commitcce25a02a95ab3fd12ea3de6c0187179c944376d (patch)
tree8353d5a72f6f07ab59979aa866ead5f551b1dba5 /sys/netinet
parentc8f8cbcede4ca685382649c1f07cd9d065f72fa1 (diff)
Switch installer to Allotment Routing Table (ART).
Prompted by a bugreport by naddy that IPv6 autoconfiguration is broken in the installer. OK mpi, "go for it" deraadt
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/if_ether.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index 49e5d84f525..9625c1fbb52 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ether.c,v 1.229 2017/07/28 09:01:09 mpi Exp $ */
+/* $OpenBSD: if_ether.c,v 1.230 2017/07/30 18:16:14 florian Exp $ */
/* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */
/*
@@ -730,13 +730,11 @@ arplookup(struct in_addr *inp, int create, int proxy, u_int tableid)
}
if (proxy && !ISSET(rt->rt_flags, RTF_ANNOUNCE)) {
-#ifdef ART
while ((rt = rtable_iterate(rt)) != NULL) {
if (ISSET(rt->rt_flags, RTF_ANNOUNCE)) {
break;
}
}
-#endif /* ART */
}
return (rt);