diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-16 22:58:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-10-16 22:58:54 +0000 |
commit | 7941f042b39e4999dce9451dbc98f821caf058e6 (patch) | |
tree | c612d13c6f8e617894e49574164c14acb7b3ea30 /sys | |
parent | a422ad2e535b7ed9b730e255fa791df799e373dd (diff) |
label only useful in bpf case
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_fddisubr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/net/if_fddisubr.c b/sys/net/if_fddisubr.c index ac9f7918797..c1e604161ea 100644 --- a/sys/net/if_fddisubr.c +++ b/sys/net/if_fddisubr.c @@ -363,7 +363,9 @@ fddi_output(ifp, m0, dst, rt0) fh = mtod(m, struct fddi_header *); fh->fddi_fc = FDDIFC_LLC_ASYNC|FDDIFC_LLC_PRIO4; bcopy((caddr_t)edst, (caddr_t)fh->fddi_dhost, sizeof (edst)); +#if NBPFILTER > 0 queue_it: +#endif bcopy((caddr_t)ac->ac_enaddr, (caddr_t)fh->fddi_shost, sizeof(fh->fddi_shost)); s = splimp(); |