diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-10-29 07:38:24 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-10-29 07:38:24 +0000 |
commit | 6c495b0537a54ff14cb4552aa78c8621755d9429 (patch) | |
tree | 922a91c61f56b4167064c5d2d5b399796160f912 /sys | |
parent | e9a5aeba96281a61d3f8f16061e0be2e1b32bf4d (diff) |
fix comment to match code
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_al.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/pci/if_al.c b/sys/dev/pci/if_al.c index 4c242c679e4..f689cbbc8a4 100644 --- a/sys/dev/pci/if_al.c +++ b/sys/dev/pci/if_al.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_al.c,v 1.1 1999/10/28 21:53:55 aaron Exp $ */ +/* $OpenBSD: if_al.c,v 1.2 1999/10/29 07:38:23 jason Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved. @@ -1433,10 +1433,7 @@ void al_rxeof(sc) eh = mtod(m, struct ether_header *); #if NBPFILTER > 0 /* - * Handle BPF listeners. Let the BPF user see the packet, but - * don't pass it up to the ether_input() layer unless it's - * a broadcast packet, multicast packet, matches our ethernet - * address or the interface is in promiscuous mode. + * Handle BPF listeners. Let the BPF user see the packet. */ if (ifp->if_bpf) bpf_mtap(ifp->if_bpf, m); |