diff options
author | 2017-11-15 16:52:44 +0000 | |
---|---|---|
committer | 2017-11-15 16:52:44 +0000 | |
commit | f3cc708a8aa29fabc02ba471da00a36f06e1c9ac (patch) | |
tree | 33d8539ac400bcc927fb3d880532546900d33055 | |
parent | Remove inet6 etherip sysctl entries (diff) | |
download | wireguard-openbsd-f3cc708a8aa29fabc02ba471da00a36f06e1c9ac.tar.xz wireguard-openbsd-f3cc708a8aa29fabc02ba471da00a36f06e1c9ac.zip |
Make etherip(4) the single driver responsible for etherip sysctl entries.
One step needed to completely remove ethernet-in-IP support from gif(4).
No functional changes.
ok visa@ as part of a larger diff, ok mpi@
-rw-r--r-- | sys/netinet/in_proto.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index 56a81dee3d8..740396ed8ce 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_proto.c,v 1.82 2017/11/10 02:37:14 visa Exp $ */ +/* $OpenBSD: in_proto.c,v 1.83 2017/11/15 16:52:44 jca Exp $ */ /* $NetBSD: in_proto.c,v 1.14 1996/02/18 18:58:32 christos Exp $ */ /* @@ -280,7 +280,6 @@ struct protosw inetsw[] = { .pr_attach = rip_attach, .pr_detach = rip_detach, .pr_init = etherip_init, - .pr_sysctl = etherip_sysctl }, #endif /* NGIF */ #if defined(MPLS) && NGIF > 0 |