summaryrefslogtreecommitdiffstats
path: root/sys/netinet6
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2017-10-24 09:30:15 +0000
committermpi <mpi@openbsd.org>2017-10-24 09:30:15 +0000
commitdfab256e0865666aebca559f6a71eab6022a6b0f (patch)
tree8541f1dac13a30f1dc5461ccd96a170f1202615f /sys/netinet6
parentAdd more sanity checks to prevent a segfault and a NULL-dereference (diff)
downloadwireguard-openbsd-dfab256e0865666aebca559f6a71eab6022a6b0f.tar.xz
wireguard-openbsd-dfab256e0865666aebca559f6a71eab6022a6b0f.zip
Remove some more tests checking for a non-NULL `ifp->if_ioctl'.
if_attach() enforces it is properly defined.
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/in6.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet6/in6.c b/sys/netinet6/in6.c
index 351b3f020c6..89d2ecc705b 100644
--- a/sys/netinet6/in6.c
+++ b/sys/netinet6/in6.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in6.c,v 1.214 2017/10/24 08:57:10 mpi Exp $ */
+/* $OpenBSD: in6.c,v 1.215 2017/10/24 09:30:15 mpi Exp $ */
/* $KAME: in6.c,v 1.372 2004/06/14 08:14:21 itojun Exp $ */
/*
@@ -945,7 +945,6 @@ in6_ifinit(struct ifnet *ifp, struct in6_ifaddr *ia6, int newhost)
if ((ifacount <= 1 || ifp->if_type == IFT_CARP ||
(ifp->if_flags & (IFF_LOOPBACK|IFF_POINTOPOINT))) &&
- ifp->if_ioctl &&
(error = (*ifp->if_ioctl)(ifp, SIOCSIFADDR, (caddr_t)ia6))) {
return (error);
}