Skip to content

Commit

Permalink
typo (calculation)
Browse files Browse the repository at this point in the history
  • Loading branch information
itojun committed Oct 26, 2002
1 parent 7d92060 commit 837bce8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion freebsd2/usr.bin/netstat/inet6.c
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ rip6_stats(off, name)
#define p(f, m) if (rip6stat.f || sflag <= 1) \
printf(m, (u_quad_t)rip6stat.f, plural(rip6stat.f))
p(rip6s_ipackets, "\t%qu message%s received\n");
p(rip6s_isum, "\t%qu checksum calcuration%s on inbound\n");
p(rip6s_isum, "\t%qu checksum calculation%s on inbound\n");
p(rip6s_badsum, "\t%qu message%s with bad checksum\n");
p(rip6s_nosock, "\t%qu message%s dropped due to no socket\n");
p(rip6s_nosockmcast,
Expand Down
2 changes: 1 addition & 1 deletion freebsd4/usr.bin/netstat/inet6.c
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ rip6_stats(u_long off __unused, char *name, int af __unused)
#define p(f, m) if (rip6stat.f || sflag <= 1) \
printf(m, (unsigned long long)rip6stat.f, plural(rip6stat.f))
p(rip6s_ipackets, "\t%llu message%s received\n");
p(rip6s_isum, "\t%llu checksum calcuration%s on inbound\n");
p(rip6s_isum, "\t%llu checksum calculation%s on inbound\n");
p(rip6s_badsum, "\t%llu message%s with bad checksum\n");
p(rip6s_nosock, "\t%llu message%s dropped due to no socket\n");
p(rip6s_nosockmcast,
Expand Down
2 changes: 1 addition & 1 deletion netbsd/usr.bin/netstat/inet6.c
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ rip6_stats(off, name)
#define p(f, m) if (rip6stat.f || sflag <= 1) \
printf(m, (unsigned long long)rip6stat.f, plural(rip6stat.f))
p(rip6s_ipackets, "\t%llu message%s received\n");
p(rip6s_isum, "\t%llu checksum calcuration%s on inbound\n");
p(rip6s_isum, "\t%llu checksum calculation%s on inbound\n");
p(rip6s_badsum, "\t%llu message%s with bad checksum\n");
p(rip6s_nosock, "\t%llu message%s dropped due to no socket\n");
p(rip6s_nosockmcast,
Expand Down
2 changes: 1 addition & 1 deletion openbsd/usr.bin/netstat/inet6.c
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ rip6_stats(off, name)
#define p(f, m) if (rip6stat.f || sflag <= 1) \
printf(m, (unsigned long long)rip6stat.f, plural(rip6stat.f))
p(rip6s_ipackets, "\t%llu message%s received\n");
p(rip6s_isum, "\t%llu checksum calcuration%s on inbound\n");
p(rip6s_isum, "\t%llu checksum calculation%s on inbound\n");
p(rip6s_badsum, "\t%llu message%s with bad checksum\n");
p(rip6s_nosock, "\t%llu message%s dropped due to no socket\n");
p(rip6s_nosockmcast,
Expand Down

0 comments on commit 837bce8

Please sign in to comment.