summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/net/tcp_ao/lib
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2023-12-18 16:30:22 +0300
committerDavid S. Miller <davem@davemloft.net>2023-12-23 01:13:00 +0300
commit67f440c05dd2fca9f26057e713d8618e23c4e021 (patch)
tree3a5a3f89de120c9244a6aceaaba3651196828b6b /tools/testing/selftests/net/tcp_ao/lib
parent27c346a22f816b1d02e9303c572b4b8e31b75f98 (diff)
downloadlinux-67f440c05dd2fca9f26057e713d8618e23c4e021.tar.xz
selftests/net: Fix various spelling mistakes in TCP-AO tests
There are a handful of spelling mistakes in test messages in the TCP-AIO selftests. Fix these. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Reviewed-by: Dmitry Safonov <dima@arista.com> Reviewed-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/net/tcp_ao/lib')
-rw-r--r--tools/testing/selftests/net/tcp_ao/lib/proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/net/tcp_ao/lib/proc.c b/tools/testing/selftests/net/tcp_ao/lib/proc.c
index 2322f4d4676d..2fb6dd8adba6 100644
--- a/tools/testing/selftests/net/tcp_ao/lib/proc.c
+++ b/tools/testing/selftests/net/tcp_ao/lib/proc.c
@@ -227,7 +227,7 @@ void netstat_print_diff(struct netstat *nsa, struct netstat *nsb)
}
if (nsb->counters_nr < nsa->counters_nr)
- test_error("Unexpected: some counters dissapeared!");
+ test_error("Unexpected: some counters disappeared!");
for (j = 0, i = 0; i < nsb->counters_nr; i++) {
if (strcmp(nsb->counters[i].name, nsa->counters[j].name)) {
@@ -244,7 +244,7 @@ void netstat_print_diff(struct netstat *nsa, struct netstat *nsb)
j++;
}
if (j != nsa->counters_nr)
- test_error("Unexpected: some counters dissapeared!");
+ test_error("Unexpected: some counters disappeared!");
nsb = nsb->next;
nsa = nsa->next;