Fix typo in "#ifdef" in ie_read_frame() which prevented Berkeley Packet
Filters from working correctly. Fixes PR port-arm32/8343 by Richard Earnshaw.
This commit is contained in:
parent
bc5da9a8da
commit
5f94d21164
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: if_ie.c,v 1.24 1999/05/21 21:31:37 thorpej Exp $ */
|
||||
/* $NetBSD: if_ie.c,v 1.25 1999/09/13 20:17:35 tron Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Melvin Tang-Richardson.
|
||||
|
@ -1327,7 +1327,7 @@ ie_read_frame(sc, num)
|
|||
return;
|
||||
}
|
||||
|
||||
#if NBFILTER > 0
|
||||
#if NBPFILTER > 0
|
||||
if ( ifp->if_bpf ) {
|
||||
bpf_mtap(ifp->if_bpf, m );
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue