ipv6: fix ICMP6_MIB_OUTERRORS

In commit 1f8438a85366 (icmp: Account for ICMP out errors), I did a typo
on IPV6 side, using ICMP6_MIB_OUTMSGS instead of ICMP6_MIB_OUTERRORS

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Eric Dumazet and committed by David S. Miller 00d9d6a1 81a95f04

+2 -2
+2 -2
net/ipv6/icmp.c
··· 483 483 np->tclass, NULL, &fl, (struct rt6_info*)dst, 484 484 MSG_DONTWAIT, np->dontfrag); 485 485 if (err) { 486 - ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS); 486 + ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTERRORS); 487 487 ip6_flush_pending_frames(sk); 488 488 goto out_put; 489 489 } ··· 565 565 np->dontfrag); 566 566 567 567 if (err) { 568 - ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTMSGS); 568 + ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTERRORS); 569 569 ip6_flush_pending_frames(sk); 570 570 goto out_put; 571 571 }