diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-06-30 13:54:43 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2015-06-30 13:54:43 +0000 |
commit | 0b812a21998977cef74d01a9fb18550fb3cd4b85 (patch) | |
tree | 922bdb480b37fbe5bac5b0b498bafabc393863f3 /sys/net/if_bridge.c | |
parent | 95cc56b9c3aa08e299a94a052663435c24eb1484 (diff) |
Rename if_output() into if_enqueue() to avoid confusion with comments
talking about (*ifp->if_output)().
ok claudio@, dlg@
Diffstat (limited to 'sys/net/if_bridge.c')
-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 902726f22d4..18e682d7e34 100644 --- a/sys/net/if_bridge.c +++ b/sys/net/if_bridge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bridge.c,v 1.249 2015/06/30 09:13:53 mpi Exp $ */ +/* $OpenBSD: if_bridge.c,v 1.250 2015/06/30 13:54:42 mpi Exp $ */ /* * Copyright (c) 1999, 2000 Jason L. Wright (jason@thought.net) @@ -2566,7 +2566,7 @@ bridge_ifenqueue(struct bridge_softc *sc, struct ifnet *ifp, struct mbuf *m) #endif len = m->m_pkthdr.len; - error = if_output(ifp, m); + error = if_enqueue(ifp, m); if (error) { sc->sc_if.if_oerrors++; return (error); |