diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-20 11:15:08 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-11-20 11:15:08 +0000 |
commit | 3f48b319156869e030489e129f5d9648b9f4f410 (patch) | |
tree | b9d19fc0490ab29c861828240db78f3b558199d4 /sys/net/if.c | |
parent | 817688c6c701e7f07146aff8a60b17bbd078ec05 (diff) |
i made a mistake. rename ifq_enq and ifq_deq to ifq_enqueue and ifq_dequeue
fixing it now before i regret it more.
Diffstat (limited to 'sys/net/if.c')
-rw-r--r-- | sys/net/if.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index c419a5ca303..f899cd8788c 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.409 2015/11/20 10:40:00 sthen Exp $ */ +/* $OpenBSD: if.c,v 1.410 2015/11/20 11:15:07 dlg Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -2873,7 +2873,7 @@ ifq_enqueue_try(struct ifqueue *ifq, struct mbuf *m) } int -ifq_enq(struct ifqueue *ifq, struct mbuf *m) +ifq_enqueue(struct ifqueue *ifq, struct mbuf *m) { int err; @@ -2928,7 +2928,7 @@ ifq_deq_rollback(struct ifqueue *ifq, struct mbuf *m) } struct mbuf * -ifq_deq(struct ifqueue *ifq) +ifq_dequeue(struct ifqueue *ifq) { struct mbuf *m; |