svn commit: r340672 - stable/10/sys/netinet

Eugene Grosbein eugen at FreeBSD.org
Tue Nov 20 11:19:03 UTC 2018


Author: eugen
Date: Tue Nov 20 11:19:02 2018
New Revision: 340672
URL: https://svnweb.freebsd.org/changeset/base/340672

Log:
  Unbreak build after r340671. This is direct commit to stable/10.

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

Modified: stable/10/sys/netinet/ip_icmp.c
==============================================================================
--- stable/10/sys/netinet/ip_icmp.c	Tue Nov 20 10:45:46 2018	(r340671)
+++ stable/10/sys/netinet/ip_icmp.c	Tue Nov 20 11:19:02 2018	(r340672)
@@ -148,7 +148,7 @@ static VNET_DEFINE(int, icmptstamprepl) = 1;
 SYSCTL_INT(_net_inet_icmp, OID_AUTO, tstamprepl, CTLFLAG_RW,
 	&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