Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm32/podulebus Fix typo in "#ifdef" in ie_read_fra...
details: https://anonhg.NetBSD.org/src/rev/ea809dab7749
branches: trunk
changeset: 476335:ea809dab7749
user: tron <tron%NetBSD.org@localhost>
date: Mon Sep 13 20:17:35 1999 +0000
description:
Fix typo in "#ifdef" in ie_read_frame() which prevented Berkeley Packet
Filters from working correctly. Fixes PR port-arm32/8343 by
Richard Earnshaw.
diffstat:
sys/arch/arm32/podulebus/if_ie.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r a727e7dfea0a -r ea809dab7749 sys/arch/arm32/podulebus/if_ie.c
--- a/sys/arch/arm32/podulebus/if_ie.c Mon Sep 13 19:49:41 1999 +0000
+++ b/sys/arch/arm32/podulebus/if_ie.c Mon Sep 13 20:17:35 1999 +0000
@@ -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 @@
return;
}
-#if NBFILTER > 0
+#if NBPFILTER > 0
if ( ifp->if_bpf ) {
bpf_mtap(ifp->if_bpf, m );
};
Home |
Main Index |
Thread Index |
Old Index