aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/net
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-08-05 11:52:11 +0100
committerDavid S. Miller <davem@davemloft.net>2019-08-05 10:27:53 -0700
commita9e21bea1f815c2ec917ecc0efe0a7049c825d5b (patch)
treec863004a6d76328535b8801fe023428375d03477 /tools/testing/selftests/net
parentMerge branch 'net-l3-l4-functional-tests' (diff)
downloadlinux-dev-a9e21bea1f815c2ec917ecc0efe0a7049c825d5b.tar.xz
linux-dev-a9e21bea1f815c2ec917ecc0efe0a7049c825d5b.zip
][next] selftests: nettest: fix spelling mistake: "potocol" -> "protocol"
There is a spelling mistake in an error messgae. Fix it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/net')
-rw-r--r--tools/testing/selftests/net/nettest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/nettest.c b/tools/testing/selftests/net/nettest.c
index 9278f8460d75..83515e5ea4dc 100644
--- a/tools/testing/selftests/net/nettest.c
+++ b/tools/testing/selftests/net/nettest.c
@@ -1627,7 +1627,7 @@ int main(int argc, char *argv[])
args.protocol = pe->p_proto;
} else {
if (str_to_uint(optarg, 0, 0xffff, &tmp) != 0) {
- fprintf(stderr, "Invalid potocol\n");
+ fprintf(stderr, "Invalid protocol\n");
return 1;
}
args.protocol = tmp;