freebsd-dev/sys/kern/kern_opt.c
Garrett Wollman 1e49bd9cd3 Fix spelling of net.inet.ip.forwarding.
Add ARP_PROXYALL to defunct options.
1997-02-10 19:19:16 +00:00

22 lines
514 B
C

#include "opt_defunct.h"
#ifdef CHILD_MAX
#warning "obsolete option CHILD_MAX - use /etc/login.conf"
#endif
#ifdef EXTRAVNODES
#warning "obsolete option EXTRAVNODES - use `sysctl -w kern.maxvnodes=value'"
#endif
#ifdef GATEWAY
#warning "obsolete option GATEWAY - use `sysctl -w net.inet.ip.forwarding=1'"
#endif
#ifdef ARP_PROXYALL
#warning "obsolete option ARP_PROXYALL - use `sysctl -w net.link.ether.inet.proxyall=1'"
#endif
#ifdef OPEN_MAX
#warning "obsolete option OPEN_MAX - use /etc/login.conf"
#endif