Unbreak build by reverting if_bridge part of r360047.

Pointy hat to: melifaro
This commit is contained in:
Alexander V. Chernikov 2020-04-17 18:22:37 +00:00
parent 5326289d93
commit ae4b62595e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=360049

View File

@ -302,7 +302,7 @@ static int bridge_transmit(struct ifnet *, struct mbuf *);
static void bridge_qflush(struct ifnet *);
static struct mbuf *bridge_input(struct ifnet *, struct mbuf *);
static int bridge_output(struct ifnet *, struct mbuf *, struct sockaddr *,
struct route *);
struct rtentry *);
static int bridge_enqueue(struct bridge_softc *, struct ifnet *,
struct mbuf *);
static void bridge_rtdelete(struct bridge_softc *, struct ifnet *ifp, int);
@ -2061,7 +2061,7 @@ bridge_dummynet(struct mbuf *m, struct ifnet *ifp)
*/
static int
bridge_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa,
struct route *ro __unused)
struct rtentry *rt)
{
struct ether_header *eh;
struct ifnet *bifp, *dst_if;