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/netinet6/udp6_output.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/netinet6/udp6_output.c')
-rw-r--r-- | sys/netinet6/udp6_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet6/udp6_output.c b/sys/netinet6/udp6_output.c index f944ffc0430..686c0391625 100644 --- a/sys/netinet6/udp6_output.c +++ b/sys/netinet6/udp6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp6_output.c,v 1.32 2014/11/09 22:05:08 bluhm Exp $ */ +/* $OpenBSD: udp6_output.c,v 1.33 2014/12/05 15:50:04 mpi Exp $ */ /* $KAME: udp6_output.c,v 1.21 2001/02/07 11:51:54 itojun Exp $ */ /* @@ -72,6 +72,7 @@ #include <sys/syslog.h> #include <net/if.h> +#include <net/if_var.h> #include <net/route.h> #include <net/if_types.h> |