diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2014-01-22 06:28:10 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2014-01-22 06:28:10 +0000 |
commit | b006e72e2efed980643ce42730d58f77e91b7c5c (patch) | |
tree | 6bc038768ab58057cf33a28d6aaee9e583e2e156 /sys/netinet/if_ether.c | |
parent | 368a2ec2c2c87dc09e3d917f566e5c8b6bc65bac (diff) |
Remove genmask support from the kernel. rtmsgs with RTA_GENMASK set will
now cause a EINVAL. The RTA_GENMASK and RTAX_GENMASK defines are kept for
compatibility reasons.
OK benno@ and agreed by dlg@
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r-- | sys/netinet/if_ether.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index a5655821f4e..828f1f08681 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.117 2014/01/10 14:29:08 tedu Exp $ */ +/* $OpenBSD: if_ether.c,v 1.118 2014/01/22 06:28:09 claudio Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -1121,8 +1121,6 @@ db_show_radix_node(struct radix_node *rn, void *w, u_int id) db_printf(" ifa=%p\n", rt->rt_ifa); db_print_ifa(rt->rt_ifa); - db_printf(" genmask="); db_print_sa(rt->rt_genmask); - db_printf(" gwroute=%p llinfo=%p\n", rt->rt_gwroute, rt->rt_llinfo); db_print_llinfo(rt->rt_llinfo); return (0); |