svn commit: r185934 - head/sys/netinet

Bjoern A. Zeeb bz at FreeBSD.org
Thu Dec 11 08:05:08 PST 2008


Author: bz
Date: Thu Dec 11 16:05:07 2008
New Revision: 185934
URL: http://svn.freebsd.org/changeset/base/185934

Log:
  Use the correct INIT_VNET_INET() as the virtualized variable here
  are in vinet.h not in vinet6.h
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/netinet/tcp_subr.c

Modified: head/sys/netinet/tcp_subr.c
==============================================================================
--- head/sys/netinet/tcp_subr.c	Thu Dec 11 15:56:30 2008	(r185933)
+++ head/sys/netinet/tcp_subr.c	Thu Dec 11 16:05:07 2008	(r185934)
@@ -155,7 +155,7 @@ SYSCTL_V_PROC(V_NET, vnet_inet, _net_ine
 static int
 sysctl_net_inet_tcp_mss_v6_check(SYSCTL_HANDLER_ARGS)
 {
-	INIT_VNET_INET6(curvnet);
+	INIT_VNET_INET(curvnet);
 	int error, new;
 
 	new = V_tcp_v6mssdflt;


More information about the svn-src-all mailing list