Module Name:    src
Committed By:   roy
Date:           Tue Oct 13 09:46:42 UTC 2015

Modified Files:
        src/sys/netinet: ip_input.c

Log Message:
Include arp.h to restore the sysctl net.inet.ip.dad_count.
Fixes PR kern/49883 thanks to HITOSHI Osada.


To generate a diff of this commit:
cvs rdiff -u -r1.324 -r1.325 src/sys/netinet/ip_input.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet/ip_input.c
diff -u src/sys/netinet/ip_input.c:1.324 src/sys/netinet/ip_input.c:1.325
--- src/sys/netinet/ip_input.c:1.324	Mon Aug 24 22:21:26 2015
+++ src/sys/netinet/ip_input.c	Tue Oct 13 09:46:42 2015
@@ -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 <sys/cdefs.h>
-__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
 #include "opt_inet_csum.h"
 #endif
 
+#include "arp.h"
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/cpu.h>

Reply via email to