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 /usr.sbin/route6d/route6d.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 'usr.sbin/route6d/route6d.c')
-rw-r--r-- | usr.sbin/route6d/route6d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c index 89a01625ddb..dcc47eb1171 100644 --- a/usr.sbin/route6d/route6d.c +++ b/usr.sbin/route6d/route6d.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route6d.c,v 1.58 2013/08/26 14:15:08 naddy Exp $ */ +/* $OpenBSD: route6d.c,v 1.59 2013/10/17 16:27:48 bluhm Exp $ */ /* $KAME: route6d.c,v 1.111 2006/10/25 06:38:13 jinmei Exp $ */ /* @@ -56,7 +56,7 @@ #include <net/if.h> #include <net/route.h> #include <netinet/in.h> -#include <netinet/in_var.h> +#include <netinet6/in6_var.h> #include <netinet/ip6.h> #include <netinet/udp.h> #include <netdb.h> |