svn commit: r340673 - stable/11/sys/netinet

Eugene Grosbein eugen at FreeBSD.org
Tue Nov 20 11:23:34 UTC 2018


Author: eugen
Date: Tue Nov 20 11:23:33 2018
New Revision: 340673
URL: https://svnweb.freebsd.org/changeset/base/340673

Log:
  Unbreak build after r340670. This is direct commit to stable/11.

Modified:
  stable/11/sys/netinet/ip_icmp.c

Modified: stable/11/sys/netinet/ip_icmp.c
==============================================================================
--- stable/11/sys/netinet/ip_icmp.c	Tue Nov 20 11:19:02 2018	(r340672)
+++ stable/11/sys/netinet/ip_icmp.c	Tue Nov 20 11:23:33 2018	(r340673)
@@ -155,7 +155,7 @@ SYSCTL_INT(_net_inet_icmp, OID_AUTO, tstamprepl, CTLFL
 	&VNET_NAME(icmptstamprepl), 0,
 	"Respond to ICMP Timestamp packets");
 
-VNET_DEFINE_STATIC(int, error_keeptags) = 0;
+static VNET_DEFINE(int, error_keeptags) = 0;
 #define	V_error_keeptags		VNET(error_keeptags)
 SYSCTL_INT(_net_inet_icmp, OID_AUTO, error_keeptags, CTLFLAG_VNET | CTLFLAG_RW,
 	&VNET_NAME(error_keeptags), 0,


More information about the svn-src-all mailing list