Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 064f3605 authored by Mitsuru Chinen's avatar Mitsuru Chinen Committed by David S. Miller
Browse files

[IPv4] SNMP: Refer correct memory location to display ICMP out-going statistics



While displaying ICMP out-going statistics as Out<name> counters in
/proc/net/snmp, the memory location for ICMP in-coming statistics
was referred by mistake.

Signed-off-by: default avatarMitsuru Chinen <mitch@linux.vnet.ibm.com>
Acked-by: default avatarDavid L Stevens <dlstevens@us.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bf3c23d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -304,7 +304,7 @@ static void icmp_put(struct seq_file *seq)
	for (i=0; icmpmibmap[i].name != NULL; i++)
		seq_printf(seq, " %lu",
			snmp_fold_field((void **) icmpmsg_statistics,
				icmpmibmap[i].index));
				icmpmibmap[i].index | 0x100));
}

/*