summaryrefslogtreecommitdiff
path: root/sys/net/if_vxlan.c
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2014-12-05 15:50:05 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2014-12-05 15:50:05 +0000
commit8408ec24028693835160bf2ce0f968cb43c63643 (patch)
tree58a8a3a42e9afee7d996989f39056dbefd9f9930 /sys/net/if_vxlan.c
parent3102933c68a271f0c3b5bf4ab50e6229ecd384d1 (diff)
Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.
ok mikeb@, krw@, bluhm@, tedu@
Diffstat (limited to 'sys/net/if_vxlan.c')
-rw-r--r--sys/net/if_vxlan.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/if_vxlan.c b/sys/net/if_vxlan.c
index 5e19822ecc6..947e9d555e9 100644
--- a/sys/net/if_vxlan.c
+++ b/sys/net/if_vxlan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vxlan.c,v 1.16 2014/11/23 07:39:02 deraadt Exp $ */
+/* $OpenBSD: if_vxlan.c,v 1.17 2014/12/05 15:50:04 mpi Exp $ */
/*
* Copyright (c) 2013 Reyk Floeter <reyk@openbsd.org>
@@ -30,6 +30,7 @@
#include <sys/ioctl.h>
#include <net/if.h>
+#include <net/if_var.h>
#include <net/if_dl.h>
#include <net/if_media.h>
#include <net/route.h>