summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_upl.c
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2015-06-30 13:54:42 +0000
committermpi <mpi@openbsd.org>2015-06-30 13:54:42 +0000
commitc38eb4ff3eceff3e8e4056a9172c0a485f73f1af (patch)
tree8479661e74e50d24a83e966dec57ee6bb05a7319 /sys/dev/usb/if_upl.c
parentAdd tests for syslog -U. (diff)
downloadwireguard-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/dev/usb/if_upl.c')
-rw-r--r--sys/dev/usb/if_upl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_upl.c b/sys/dev/usb/if_upl.c
index 429fa99089c..87b37296e9c 100644
--- a/sys/dev/usb/if_upl.c
+++ b/sys/dev/usb/if_upl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_upl.c,v 1.66 2015/06/24 09:40:54 mpi Exp $ */
+/* $OpenBSD: if_upl.c,v 1.67 2015/06/30 13:54:42 mpi Exp $ */
/* $NetBSD: if_upl.c,v 1.19 2002/07/11 21:14:26 augustss Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -887,5 +887,5 @@ int
upl_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
struct rtentry *rt0)
{
- return (if_output(ifp, m));
+ return (if_enqueue(ifp, m));
}