diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-09 09:46:14 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-09-09 09:46:14 +0000 |
commit | f11c329e7caff0cc9d3a1aa49dc295963a9e2793 (patch) | |
tree | 3c230dfa7a3dd90b0f6b1df3db6aa9773457daf8 /sys/netinet6 | |
parent | 668b4aae47fa6bc71b33fe9ea8f744b878c6c3f1 (diff) |
Why ip6_input.c includes netinet/ip_icmp.h is beyond my imagination.
Compiles fine without it so remove it.
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_input.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c index a1abc6fc591..c613409f758 100644 --- a/sys/netinet6/ip6_input.c +++ b/sys/netinet6/ip6_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_input.c,v 1.97 2010/07/08 19:42:46 jsg Exp $ */ +/* $OpenBSD: ip6_input.c,v 1.98 2010/09/09 09:46:13 claudio Exp $ */ /* $KAME: ip6_input.c,v 1.188 2001/03/29 05:34:31 itojun Exp $ */ /* @@ -89,8 +89,7 @@ #ifdef INET #include <netinet/ip.h> -#include <netinet/ip_icmp.h> -#endif /*INET*/ +#endif #include <netinet/in_pcb.h> #include <netinet6/in6_var.h> |