Module Name: src
Committed By: martin
Date: Fri Dec 14 12:27:22 UTC 2018
Modified Files:
src/sys/net: if_bridge.c
Log Message:
Need <netinet6/ip6_var.h> for ip6_statinc() prototype.
To generate a diff of this commit:
cvs rdiff -u -r1.161 -r1.162 src/sys/net/if_bridge.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/net/if_bridge.c
diff -u src/sys/net/if_bridge.c:1.161 src/sys/net/if_bridge.c:1.162
--- src/sys/net/if_bridge.c:1.161 Wed Dec 12 01:46:47 2018
+++ src/sys/net/if_bridge.c Fri Dec 14 12:27:22 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: if_bridge.c,v 1.161 2018/12/12 01:46:47 rin Exp $ */
+/* $NetBSD: if_bridge.c,v 1.162 2018/12/14 12:27:22 martin Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -80,7 +80,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.161 2018/12/12 01:46:47 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bridge.c,v 1.162 2018/12/14 12:27:22 martin Exp $");
#ifdef _KERNEL_OPT
#include "opt_bridge_ipf.h"
@@ -124,6 +124,7 @@ __KERNEL_RCSID(0, "$NetBSD: if_bridge.c,
#include <netinet/ip6.h>
#include <netinet6/in6_var.h>
+#include <netinet6/ip6_var.h>
#include <netinet6/ip6_private.h> /* XXX */
#endif /* BRIDGE_IPF */