diff options
author | 2017-11-15 16:50:31 +0000 | |
---|---|---|
committer | 2017-11-15 16:50:31 +0000 | |
commit | b9ec5c78374f37418a0df89c46cf5599ad83ffcf (patch) | |
tree | 2387641eb2e8211117b3f315c61fe1a38a3f28ff | |
parent | Reset the OCSP URL on config reload. Otherwise we end up not being (diff) | |
download | wireguard-openbsd-b9ec5c78374f37418a0df89c46cf5599ad83ffcf.tar.xz wireguard-openbsd-b9ec5c78374f37418a0df89c46cf5599ad83ffcf.zip |
Remove inet6 etherip sysctl entries
The INET6 entries are not needed, not documented (use net.inet.etherip)
and do not appear in sysctl(8) output.
ok mpi@
-rw-r--r-- | sys/netinet6/in6_proto.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c index ea889b3d3ec..65fef212390 100644 --- a/sys/netinet6/in6_proto.c +++ b/sys/netinet6/in6_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in6_proto.c,v 1.97 2017/11/05 13:19:59 florian Exp $ */ +/* $OpenBSD: in6_proto.c,v 1.98 2017/11/15 16:50:31 jca Exp $ */ /* $KAME: in6_proto.c,v 1.66 2000/10/10 15:35:47 itojun Exp $ */ /* @@ -283,7 +283,6 @@ struct protosw inet6sw[] = { .pr_usrreq = rip6_usrreq, .pr_attach = rip6_attach, .pr_detach = rip6_detach, - .pr_sysctl = etherip_sysctl }, #endif /* NGIF */ #if NCARP > 0 @@ -325,7 +324,6 @@ struct protosw inet6sw[] = { .pr_usrreq = rip6_usrreq, .pr_attach = rip6_attach, .pr_detach = rip6_detach, - .pr_sysctl = ip_etherip_sysctl }, #endif /* NETHERIP */ { |