diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-12-05 15:50:05 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-12-05 15:50:05 +0000 |
commit | 8408ec24028693835160bf2ce0f968cb43c63643 (patch) | |
tree | 58a8a3a42e9afee7d996989f39056dbefd9f9930 /sys/netinet/ip_ipip.c | |
parent | 3102933c68a271f0c3b5bf4ab50e6229ecd384d1 (diff) |
Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.
ok mikeb@, krw@, bluhm@, tedu@
Diffstat (limited to 'sys/netinet/ip_ipip.c')
-rw-r--r-- | sys/netinet/ip_ipip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/ip_ipip.c b/sys/netinet/ip_ipip.c index 2be7a60bca5..c138e7cb49d 100644 --- a/sys/netinet/ip_ipip.c +++ b/sys/netinet/ip_ipip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipip.c,v 1.54 2014/09/14 14:17:26 jsg Exp $ */ +/* $OpenBSD: ip_ipip.c,v 1.55 2014/12/05 15:50:04 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -48,6 +48,7 @@ #include <sys/sysctl.h> #include <net/if.h> +#include <net/if_var.h> #include <net/route.h> #include <net/netisr.h> #include <net/bpf.h> |