diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-29 07:18:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-29 07:18:21 +0000 |
commit | c0268d8790264c085de02502ac9627028cb760e7 (patch) | |
tree | 7849afbaa9976b60e22df28cc383435478c366ac /sys/net | |
parent | 8839fe798e11ddf70cbe2bf4887a3b916b35ca9a (diff) |
tun_bpf not needed
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_tun.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index 2f402083a2e..29d27986cca 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tun.c,v 1.18 1997/07/29 05:53:22 deraadt Exp $ */ +/* $OpenBSD: if_tun.c,v 1.19 1997/07/29 07:18:20 deraadt Exp $ */ /* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */ /* @@ -87,9 +87,6 @@ struct tun_softc { int tun_pgrp; /* the process group - if any */ struct selinfo tun_rsel; /* read select */ struct selinfo tun_wsel; /* write select (not used) */ -#if NBPFILTER > 0 - caddr_t tun_bpf; -#endif }; #ifdef TUN_DEBUG |