diff options
author | peter <peter@FreeBSD.org> | 1997-10-18 00:49:59 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-10-18 00:49:59 +0000 |
commit | 7a5b1c8e7f565cccac85635e3c770d507b830682 (patch) | |
tree | f03276e96e1178cb12d85f1d863cbd07cec511df /sys/net/if_ppp.h | |
parent | 78e8c3f4e136edc7d6fe93676d0c76ccf8c39ddf (diff) | |
download | FreeBSD-src-7a5b1c8e7f565cccac85635e3c770d507b830682.zip FreeBSD-src-7a5b1c8e7f565cccac85635e3c770d507b830682.tar.gz |
Back out the `PPP_FILTER => NBPFILTER' changes.
Diffstat (limited to 'sys/net/if_ppp.h')
-rw-r--r-- | sys/net/if_ppp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_ppp.h b/sys/net/if_ppp.h index d3f01a7..b776c53 100644 --- a/sys/net/if_ppp.h +++ b/sys/net/if_ppp.h @@ -16,7 +16,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: if_ppp.h,v 1.10 1997/10/17 21:30:30 roberto Exp $ + * $Id: if_ppp.h,v 1.11 1997/10/17 21:50:31 roberto Exp $ */ #ifndef _IF_PPP_H_ @@ -116,10 +116,10 @@ struct ifpppcstatsreq { #define PPPIOCGNPMODE _IOWR('t', 76, struct npioctl) /* get NP mode */ #define PPPIOCSNPMODE _IOW('t', 75, struct npioctl) /* set NP mode */ #define PPPIOCGIDLE _IOR('t', 74, struct ppp_idle) /* get idle time */ -#if NBPFILTER > 0 +#ifdef PPP_FILTER #define PPPIOCSPASS _IOW('t', 71, struct bpf_program) /* set pass filter */ #define PPPIOCSACTIVE _IOW('t', 70, struct bpf_program) /* set active filt */ -#endif /* NBPFILTER */ +#endif /* PPP_FILTER */ /* PPPIOC[GS]MTU are alternatives to SIOC[GS]IFMTU, used under Ultrix */ #define PPPIOCGMTU _IOR('t', 73, int) /* get interface MTU */ |