aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristof Provost <kp@FreeBSD.org>2023-11-12 17:23:04 +0000
committerKristof Provost <kp@FreeBSD.org>2023-11-19 19:29:50 +0000
commit4595a9e9af827db03b293a9aed72618bc285f54f (patch)
treebe45cf70fbec9280d490f1e5db248cd09b624f91
parent9ed67f1307f40b3173ea3b3889c6323f9ef4a58f (diff)
netstat: fix missing tab in icmp6 output
PR: 275044 Submitted by: sigsys@gmail.com Reviewed by: kp MFC after: 1 week (cherry picked from commit 4b5634f4e56ddc0554c5ebba610d45eb48b9210d)
-rw-r--r--usr.bin/netstat/inet6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/netstat/inet6.c b/usr.bin/netstat/inet6.c
index b88e84ecc564..9141cca191ee 100644
--- a/usr.bin/netstat/inet6.c
+++ b/usr.bin/netstat/inet6.c
@@ -992,7 +992,7 @@ icmp6_stats(u_long off, const char *name, int af1 __unused, int proto __unused)
"{N:/bad checksum%s}\n");
p(icp6s_badlen, "\t{:dropped-bad-length/%ju} "
"{N:/message%s with bad length}\n");
- p(icp6s_dropped, "{:dropped-no-entry/%ju} "
+ p(icp6s_dropped, "\t{:dropped-no-entry/%ju} "
"{N:/total packet%s dropped due to failed NDP resolution}\n");
#define NELEM (int)(sizeof(icmp6stat.icp6s_inhist)/sizeof(icmp6stat.icp6s_inhist[0]))
for (first = 1, i = 0; i < NELEM; i++)