diff options
author | peter <peter@FreeBSD.org> | 1997-10-18 00:56:23 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-10-18 00:56:23 +0000 |
commit | 1cd3ef3a0ebcd3df175cda42fde3ed0b7875fe33 (patch) | |
tree | dba26c467583befe17191010904adf85bc3d918b /sys/net/ppp_tty.c | |
parent | 7a5b1c8e7f565cccac85635e3c770d507b830682 (diff) | |
download | FreeBSD-src-1cd3ef3a0ebcd3df175cda42fde3ed0b7875fe33.zip FreeBSD-src-1cd3ef3a0ebcd3df175cda42fde3ed0b7875fe33.tar.gz |
Better fix for the bpf dependency that doesn't have such a large impact
on the code and pppd in userland. PPP_FILTER is meant to be an option (or
negatable option).
Diffstat (limited to 'sys/net/ppp_tty.c')
-rw-r--r-- | sys/net/ppp_tty.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/net/ppp_tty.c b/sys/net/ppp_tty.c index 3eefc37..200019f 100644 --- a/sys/net/ppp_tty.c +++ b/sys/net/ppp_tty.c @@ -70,14 +70,19 @@ * Paul Mackerras (paulus@cs.anu.edu.au). */ -/* $Id: ppp_tty.c,v 1.24 1997/09/21 22:01:13 gibbs Exp $ */ +/* $Id: ppp_tty.c,v 1.25 1997/10/10 11:57:43 peter Exp $ */ #include "ppp.h" #if NPPP > 0 #define VJC #define PPP_COMPRESS + +#include "bpfilter.h" +#if NBPFILTER > 0 #define PPP_FILTER +#endif + #include <sys/param.h> #include <sys/systm.h> |