diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-12-09 22:32:02 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-12-09 22:32:02 +0000 |
commit | 2a8153e81b60df61908389ba53a9e4bb1ad7f655 (patch) | |
tree | 7a1d48cf214b8b7b7c08ce119dd82c30886afa00 | |
parent | 3cf29b0d15029e8c16e3819a8815c4018af06b92 (diff) |
NPF, not NFP (prevented outgoing bridge_ipsec() packets from being filtered); Darren Reed <avalon@coombs.anu.edu.au>
-rw-r--r-- | sys/net/if_bridge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_bridge.c b/sys/net/if_bridge.c index 9440531e475..d1b51cbafbf 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.105 2002/12/09 10:11:52 markus Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.106 2002/12/09 22:32:01 jason Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -2250,7 +2250,7 @@ bridge_ipsec(dir, af, hlen, m) * We don't need to do loop detection, the * bridge will do that for us. */ -#if NFP > 0 +#if NPF > 0 switch (af) { #ifdef INET case AF_INET: |