diff options
author | 2003-02-17 18:23:22 +0000 | |
---|---|---|
committer | 2003-02-17 18:23:22 +0000 | |
commit | 5c837a0bce039b825269e2da5bbad1af304665a3 (patch) | |
tree | 2b061ff66d70575d9fb2921db34a5cf87ed3e7e0 | |
parent | More PROM upgrade patch numbers. From SunSolve. (diff) | |
download | wireguard-openbsd-5c837a0bce039b825269e2da5bbad1af304665a3.tar.xz wireguard-openbsd-5c837a0bce039b825269e2da5bbad1af304665a3.zip |
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; } |