diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-02-17 18:23:23 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-02-17 18:23:23 +0000 |
commit | f0fc8732127f84bff6666be255541adb06f4acee (patch) | |
tree | a0b088ecefd41f19d68a8b20066a76b3df94cf96 | |
parent | d16dd296267f0f5dbb5354928bbe547e4812d0a7 (diff) |
enqueue the copy that was just made, not the original (probably fixes kernel/3097, waiting to hear).
-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 b282efcf1d1..98b2b61919a 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.110 2003/02/16 21:30:13 deraadt Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.111 2003/02/17 18:23:22 jason Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -1529,7 +1529,7 @@ bridge_span(sc, eh, morig) continue; } - error = bridge_ifenqueue(sc, ifp, m); + error = bridge_ifenqueue(sc, ifp, mc); if (error) continue; } |