Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-3]: src/sys/netinet6 Pull up following revision(s) (requested by ...
details: https://anonhg.NetBSD.org/src/rev/36ca33d94ac2
branches: netbsd-3
changeset: 577404:36ca33d94ac2
user: riz <riz%NetBSD.org@localhost>
date: Sat Oct 22 03:52:18 2005 +0000
description:
Pull up following revision(s) (requested by bouyer in ticket #910):
sys/netinet6/ip6_mroute.c: revision 1.67
mif6table is used by netstat, so don't declare it static. Fix netstat -g
on Xen, whose ELF loader doesn't load local symbols in the symbol table.
diffstat:
sys/netinet6/ip6_mroute.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 64edd390a42a -r 36ca33d94ac2 sys/netinet6/ip6_mroute.c
--- a/sys/netinet6/ip6_mroute.c Sat Oct 22 03:44:51 2005 +0000
+++ b/sys/netinet6/ip6_mroute.c Sat Oct 22 03:52:18 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ip6_mroute.c,v 1.63 2005/02/26 22:45:12 perry Exp $ */
+/* $NetBSD: ip6_mroute.c,v 1.63.2.1 2005/10/22 03:52:18 riz Exp $ */
/* $KAME: ip6_mroute.c,v 1.49 2001/07/25 09:21:18 jinmei Exp $ */
/*
@@ -117,7 +117,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ip6_mroute.c,v 1.63 2005/02/26 22:45:12 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ip6_mroute.c,v 1.63.2.1 2005/10/22 03:52:18 riz Exp $");
#include "opt_inet.h"
#include "opt_mrouting.h"
@@ -178,7 +178,7 @@
struct mf6c *mf6ctable[MF6CTBLSIZ];
u_char n6expire[MF6CTBLSIZ];
-static struct mif6 mif6table[MAXMIFS];
+struct mif6 mif6table[MAXMIFS];
#ifdef MRT6DEBUG
u_int mrt6debug = 0; /* debug level */
#define DEBUG_MFC 0x02
Home |
Main Index |
Thread Index |
Old Index