diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-10-17 16:27:49 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2013-10-17 16:27:49 +0000 |
commit | 4c21639c51c629b427368502715b24ec7c8f5f9c (patch) | |
tree | 667b086eadf697720eec510843e77cc3ae1385c4 /sys/netinet6/ip6_input.c | |
parent | fb38f42fffc5b98edc293952e219e8d0a38b6169 (diff) |
The header file netinet/in_var.h included netinet6/in6_var.h. This
created a bunch of useless dependencies. Remove this implicit
inclusion and do an explicit #include <netinet6/in6_var.h> when it
is needed.
OK mpi@ henning@
Diffstat (limited to 'sys/netinet6/ip6_input.c')
-rw-r--r-- | sys/netinet6/ip6_input.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index 7777b1604bd..be34304d7c9 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.114 2013/06/26 09:12:40 henning Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.115 2013/10/17 16:27:46 bluhm Exp $ */ /* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */ /* @@ -113,7 +113,6 @@ #endif #if NCARP > 0 -#include <netinet/in_var.h> #include <netinet/ip_carp.h> #endif |