mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
Restore error handling lost in r191603
This was missed in the change from IFQ_ENQUEUE to if_transmit. Sponsored by: ADARA Networks
This commit is contained in:
parent
5db75fc724
commit
21151865d5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238298
@ -1812,7 +1812,7 @@ bridge_enqueue(struct bridge_softc *sc, struct ifnet *dst_ifp, struct mbuf *m)
|
||||
}
|
||||
|
||||
if (err == 0)
|
||||
dst_ifp->if_transmit(dst_ifp, m);
|
||||
err = dst_ifp->if_transmit(dst_ifp, m);
|
||||
}
|
||||
|
||||
if (err == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user