diff options
author | eivind <eivind@FreeBSD.org> | 1997-12-15 20:31:25 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1997-12-15 20:31:25 +0000 |
commit | 3452c23db8bec7afb3a4bc3b82801c3d659e2e55 (patch) | |
tree | b28bf5a6d5fe5f4fac13c8f346dd64244f8ed330 /sys/dev/de | |
parent | bf82710fe709ef5b3e943e0ec201b4ef5add73fa (diff) | |
download | FreeBSD-src-3452c23db8bec7afb3a4bc3b82801c3d659e2e55.zip FreeBSD-src-3452c23db8bec7afb3a4bc3b82801c3d659e2e55.tar.gz |
Throw options IPX, IPXIP and IPTUNNEL into opt_ipx.h.
The #ifdef IPXIP in netipx/ipx_if.h is OK (used from ipx_usrreq.c and
ifconfig.c only).
I also fixed a typo IPXTUNNEL -> IPTUNNEL (and #ifdef'ed out the code
inside, as it never could have compiled - doh.)
Diffstat (limited to 'sys/dev/de')
-rw-r--r-- | sys/dev/de/if_de.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/de/if_de.c b/sys/dev/de/if_de.c index 2ca1d64..f94d42f 100644 --- a/sys/dev/de/if_de.c +++ b/sys/dev/de/if_de.c @@ -1,5 +1,5 @@ /* $NetBSD: if_de.c,v 1.56 1997/10/20 14:32:46 matt Exp $ */ -/* $Id: if_de.c,v 1.74 1997/11/08 14:46:53 peter Exp $ */ +/* $Id: if_de.c,v 1.75 1997/11/22 06:45:57 bde Exp $ */ /*- * Copyright (c) 1994-1997 Matt Thomas (matt@3am-software.com) @@ -39,6 +39,8 @@ */ #define TULIP_HDR_DATA +#include "opt_ipx.h" + #include <sys/param.h> #include <sys/systm.h> #include <sys/mbuf.h> |