aboutsummaryrefslogtreecommitdiff
path: root/sys/net/ppp_tty.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-10-18 00:56:23 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-10-18 00:56:23 +0000
commitc8717456480b0aff74d08ea1f62f8137c4375051 (patch)
tree1db8f3d9fd9f76d5a773638f471f57f8a7f99242 /sys/net/ppp_tty.c
parentd11c4262eb3b52f5baea41ab18b95f248e2c76d5 (diff)
downloadsrc-c8717456480b0aff74d08ea1f62f8137c4375051.tar.gz
src-c8717456480b0aff74d08ea1f62f8137c4375051.zip
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).
Notes
Notes: svn path=/head/; revision=30525
Diffstat (limited to 'sys/net/ppp_tty.c')
-rw-r--r--sys/net/ppp_tty.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/net/ppp_tty.c b/sys/net/ppp_tty.c
index 3eefc37d0347..200019f6f570 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>