summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2015-11-24 15:17:27 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2015-11-24 15:17:27 +0000
commit7401a7b623d11e054874daa8a83afc59b2f8a1c3 (patch)
tree67631bbbcfd335d64cdf14bffc58712372890b51 /sys
parente33a4ce0a2b2ed700fb921c9a153573f4c5d6fb6 (diff)
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