From 668c3d22ad579396f8f7ea7c0a228f410b82f845 Mon Sep 17 00:00:00 2001 From: Sepherosa Ziehau Date: Sun, 17 Feb 2013 16:18:39 +0800 Subject: [PATCH] icmp: Disable icmplim_output by default It spams the console a pretty lot. --- sys/netinet/ip_icmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c index 20c2d5728f..022d7b65f6 100644 --- a/sys/netinet/ip_icmp.c +++ b/sys/netinet/ip_icmp.c @@ -117,7 +117,7 @@ SYSCTL_INT(_net_inet_icmp, ICMPCTL_ICMPLIM, icmplim, CTLFLAG_RD, #endif -static int icmplim_output = 1; +static int icmplim_output = 0; SYSCTL_INT(_net_inet_icmp, OID_AUTO, icmplim_output, CTLFLAG_RW, &icmplim_output, 0, "Enable output about ICMP bandwidth limits"); -- 2.41.0