summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2017-01-22 04:48:23 +0000
committerdlg <dlg@openbsd.org>2017-01-22 04:48:23 +0000
commitd204e2dc15fd9daaa7d9210c04a9f75fd8a6986a (patch)
treedbaea78a1c0657c520752be9c5df92e72475f5ed
parentCleanup error handling. Do not use 'goto flush' early on since the message (diff)
downloadwireguard-openbsd-d204e2dc15fd9daaa7d9210c04a9f75fd8a6986a.tar.xz
wireguard-openbsd-d204e2dc15fd9daaa7d9210c04a9f75fd8a6986a.zip
white space fixes. no functional change.
-rw-r--r--sys/net/hfsc.c14
-rw-r--r--sys/net/ifq.h6
2 files changed, 10 insertions, 10 deletions
diff --git a/sys/net/hfsc.c b/sys/net/hfsc.c
index d63a7bee03b..447ca4f9cd0 100644
--- a/sys/net/hfsc.c
+++ b/sys/net/hfsc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hfsc.c,v 1.33 2016/09/15 02:00:18 dlg Exp $ */
+/* $OpenBSD: hfsc.c,v 1.34 2017/01/22 04:48:23 dlg Exp $ */
/*
* Copyright (c) 2012-2013 Henning Brauer <henning@openbsd.org>
@@ -267,12 +267,12 @@ void hfsc_deq_commit(struct ifqueue *, struct mbuf *, void *);
void hfsc_purge(struct ifqueue *, struct mbuf_list *);
const struct ifq_ops hfsc_ops = {
- hfsc_alloc,
- hfsc_free,
- hfsc_enq,
- hfsc_deq_begin,
- hfsc_deq_commit,
- hfsc_purge,
+ hfsc_alloc,
+ hfsc_free,
+ hfsc_enq,
+ hfsc_deq_begin,
+ hfsc_deq_commit,
+ hfsc_purge,
};
const struct ifq_ops * const ifq_hfsc_ops = &hfsc_ops;
diff --git a/sys/net/ifq.h b/sys/net/ifq.h
index cf53bc702b0..4dbef36090e 100644
--- a/sys/net/ifq.h
+++ b/sys/net/ifq.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ifq.h,v 1.6 2017/01/20 03:48:03 dlg Exp $ */
+/* $OpenBSD: ifq.h,v 1.7 2017/01/22 04:48:23 dlg Exp $ */
/*
* Copyright (c) 2015 David Gwynne <dlg@openbsd.org>
@@ -311,10 +311,10 @@ struct ifq_ops {
void *(*ifqop_alloc)(void *);
void (*ifqop_free)(void *);
int (*ifqop_enq)(struct ifqueue *, struct mbuf *);
- struct mbuf *(*ifqop_deq_begin)(struct ifqueue *, void **);
+ struct mbuf *(*ifqop_deq_begin)(struct ifqueue *, void **);
void (*ifqop_deq_commit)(struct ifqueue *,
struct mbuf *, void *);
- void (*ifqop_purge)(struct ifqueue *,
+ void (*ifqop_purge)(struct ifqueue *,
struct mbuf_list *);
};