Date: Tue, 20 Nov 2018 11:19:02 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r340672 - stable/10/sys/netinet Message-ID: <201811201119.wAKBJ2aC020994@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811201119.wAKBJ2aC020994>