From: Sepherosa Ziehau Date: Sun, 17 Feb 2013 08:18:39 +0000 (+0800) Subject: icmp: Disable icmplim_output by default X-Git-Tag: v3.4.0rc~290 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/668c3d22ad579396f8f7ea7c0a228f410b82f845 icmp: Disable icmplim_output by default It spams the console a pretty lot. --- 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");