summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_usrreq.c
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2014-12-05 15:50:03 +0000
committermpi <mpi@openbsd.org>2014-12-05 15:50:03 +0000
commit0deb6685920d1014aeed01c2cf385a7e86089f92 (patch)
treeb0907295b1d360160744262eef50a274885e7f8b /sys/netinet/tcp_usrreq.c
parentMove initial wait for network link into the state machine by adding (diff)
downloadwireguard-openbsd-0deb6685920d1014aeed01c2cf385a7e86089f92.tar.xz
wireguard-openbsd-0deb6685920d1014aeed01c2cf385a7e86089f92.zip
Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.
ok mikeb@, krw@, bluhm@, tedu@
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
-rw-r--r--sys/netinet/tcp_usrreq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index dc5dbc07d76..b2edc2f4e93 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_usrreq.c,v 1.122 2014/11/25 15:35:10 mpi Exp $ */
+/* $OpenBSD: tcp_usrreq.c,v 1.123 2014/12/05 15:50:04 mpi Exp $ */
/* $NetBSD: tcp_usrreq.c,v 1.20 1996/02/13 23:44:16 christos Exp $ */
/*
@@ -81,6 +81,7 @@
#include <sys/pool.h>
#include <net/if.h>
+#include <net/if_var.h>
#include <net/route.h>
#include <netinet/in.h>