diff options
author | 2015-06-30 13:54:42 +0000 | |
---|---|---|
committer | 2015-06-30 13:54:42 +0000 | |
commit | c38eb4ff3eceff3e8e4056a9172c0a485f73f1af (patch) | |
tree | 8479661e74e50d24a83e966dec57ee6bb05a7319 /sys/net/if_tun.c | |
parent | Add tests for syslog -U. (diff) | |
download | wireguard-openbsd-c38eb4ff3eceff3e8e4056a9172c0a485f73f1af.tar.xz wireguard-openbsd-c38eb4ff3eceff3e8e4056a9172c0a485f73f1af.zip |
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_tun.c')
-rw-r--r-- | sys/net/if_tun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index 70a9df3f289..fda61c28503 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tun.c,v 1.147 2015/06/24 09:40:54 mpi Exp $ */ +/* $OpenBSD: if_tun.c,v 1.148 2015/06/30 13:54:42 mpi Exp $ */ /* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */ /* @@ -569,7 +569,7 @@ tun_output(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst, } #endif - error = if_output(ifp, m0); + error = if_enqueue(ifp, m0); splx(s); if (error) { |