From c47c3c304273c32c0703084e48a57c5d593782a2 Mon Sep 17 00:00:00 2001 From: roy Date: Tue, 13 Oct 2015 09:46:42 +0000 Subject: [PATCH] Include arp.h to restore the sysctl net.inet.ip.dad_count. Fixes PR kern/49883 thanks to HITOSHI Osada. --- sys/netinet/ip_input.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index c3f9f08a6ad2..fa716dd3e68c 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -1,4 +1,4 @@ -/* $NetBSD: ip_input.c,v 1.324 2015/08/24 22:21:26 pooka Exp $ */ +/* $NetBSD: ip_input.c,v 1.325 2015/10/13 09:46:42 roy Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -91,7 +91,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.324 2015/08/24 22:21:26 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.325 2015/10/13 09:46:42 roy Exp $"); #ifdef _KERNEL_OPT #include "opt_inet.h" @@ -103,6 +103,8 @@ __KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.324 2015/08/24 22:21:26 pooka Exp $") #include "opt_inet_csum.h" #endif +#include "arp.h" + #include #include #include