summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2019-04-27 05:11:50 +0000
committerdlg <dlg@openbsd.org>2019-04-27 05:11:50 +0000
commitdb210c34e406e627fa56f867462d5f95be778e50 (patch)
treec64ccd236c0f21d21bbd4581a49e81113e952e8e
parentcall vlan_softc variables sc, not ifv. no functional change. (diff)
downloadwireguard-openbsd-db210c34e406e627fa56f867462d5f95be778e50.tar.xz
wireguard-openbsd-db210c34e406e627fa56f867462d5f95be778e50.zip
fix some whitespace.
-rw-r--r--sys/net/if_vlan.c35
1 files changed, 18 insertions, 17 deletions
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c
index 0d9ffa94553..c4db8df5b27 100644
--- a/sys/net/if_vlan.c
+++ b/sys/net/if_vlan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vlan.c,v 1.190 2019/04/27 05:08:30 dlg Exp $ */
+/* $OpenBSD: if_vlan.c,v 1.191 2019/04/27 05:11:50 dlg Exp $ */
/*
* Copyright 1998 Massachusetts Institute of Technology
@@ -83,22 +83,23 @@ struct vlan_mc_entry {
};
struct vlan_softc {
- struct arpcom ifv_ac; /* make this an interface */
- unsigned int ifv_ifidx0; /* parent interface of this vlan */
- int ifv_rxprio;
- struct ifv_linkmib {
- int ifvm_prio; /* prio to apply on packet leaving if */
- u_int16_t ifvm_proto; /* encapsulation ethertype */
- u_int16_t ifvm_tag; /* tag to apply on packets leaving if */
- u_int16_t ifvm_type; /* non-standard ethertype or 0x8100 */
- } ifv_mib;
- LIST_HEAD(__vlan_mchead, vlan_mc_entry) vlan_mc_listhead;
- SRPL_ENTRY(vlan_softc) ifv_list;
- int ifv_flags;
- struct refcnt ifv_refcnt;
- void *lh_cookie;
- void *dh_cookie;
- struct ifih *ifv_ifih;
+ struct arpcom ifv_ac;
+ unsigned int ifv_ifidx0; /* parent interface */
+ int ifv_rxprio;
+ struct ifv_linkmib {
+ int ifvm_prio;
+ u_int16_t ifvm_proto; /* encapsulation ethertype */
+ u_int16_t ifvm_tag;
+ u_int16_t ifvm_type; /* non-standard ethertype or 0x8100 */
+ } ifv_mib;
+ LIST_HEAD(__vlan_mchead, vlan_mc_entry)
+ vlan_mc_listhead;
+ SRPL_ENTRY(vlan_softc) ifv_list;
+ int ifv_flags;
+ struct refcnt ifv_refcnt;
+ void *lh_cookie;
+ void *dh_cookie;
+ struct ifih *ifv_ifih;
};
#define ifv_if ifv_ac.ac_if