summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2015-11-24 15:17:26 +0000
committermpi <mpi@openbsd.org>2015-11-24 15:17:26 +0000
commita0856835d1d7c0c1b565ac6ebc56d966838bbc1c (patch)
tree63f554564d6882a297338197a2080ea5e46d2450 /sys
parentmissing NAME entry; (diff)
downloadwireguard-openbsd-a0856835d1d7c0c1b565ac6ebc56d966838bbc1c.tar.xz
wireguard-openbsd-a0856835d1d7c0c1b565ac6ebc56d966838bbc1c.zip
No need for <net/ethertypes.h> it is part of <netinet/if_ether.h>
While here use < > rather than " " to for driver includes.
Diffstat (limited to 'sys')
-rw-r--r--sys/net/trunklacp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/net/trunklacp.c b/sys/net/trunklacp.c
index 15d3842ab22..cf825002060 100644
--- a/sys/net/trunklacp.c
+++ b/sys/net/trunklacp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trunklacp.c,v 1.27 2015/11/24 13:37:16 mpi Exp $ */
+/* $OpenBSD: trunklacp.c,v 1.28 2015/11/24 15:17:26 mpi Exp $ */
/* $NetBSD: ieee8023ad_lacp.c,v 1.3 2005/12/11 12:24:54 christos Exp $ */
/* $FreeBSD:ieee8023ad_lacp.c,v 1.15 2008/03/16 19:25:30 thompsa Exp $ */
@@ -45,14 +45,13 @@
#include <crypto/siphash.h>
#include <net/if.h>
-#include <net/ethertypes.h>
#include <net/if_media.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
-#include "if_trunk.h"
-#include "trunklacp.h"
+#include <net/if_trunk.h>
+#include <net/trunklacp.h>
#include "bpfilter.h"
#if NBPFILTER > 0