diff options
author | des <des@FreeBSD.org> | 1999-09-14 16:40:28 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1999-09-14 16:40:28 +0000 |
commit | 1c6fac480ce153c60db9ef3f7bdf7f0e8fad2e0d (patch) | |
tree | 1d8b50057f2315cf33e0ed07dfd5d0f4af443319 /sys | |
parent | b94ca10a5535feb8418fe6388738bb054c6d7b23 (diff) | |
download | FreeBSD-src-1c6fac480ce153c60db9ef3f7bdf7f0e8fad2e0d.zip FreeBSD-src-1c6fac480ce153c60db9ef3f7bdf7f0e8fad2e0d.tar.gz |
Reorder.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_icmp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_icmp.c b/sys/netinet/ip_icmp.c index 6bb234b..145699b 100644 --- a/sys/netinet/ip_icmp.c +++ b/sys/netinet/ip_icmp.c @@ -69,14 +69,14 @@ static int icmpmaskrepl = 0; SYSCTL_INT(_net_inet_icmp, ICMPCTL_MASKREPL, maskrepl, CTLFLAG_RW, &icmpmaskrepl, 0, ""); -static int log_redirect = 0; -SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW, - &log_redirect, 0, ""); - static int drop_redirect = 0; SYSCTL_INT(_net_inet_icmp, OID_AUTO, drop_redirect, CTLFLAG_RW, &drop_redirect, 0, ""); +static int log_redirect = 0; +SYSCTL_INT(_net_inet_icmp, OID_AUTO, log_redirect, CTLFLAG_RW, + &log_redirect, 0, ""); + #ifdef ICMP_BANDLIM /* |