From: Colin Ian King Date: Mon, 5 Aug 2019 10:52:11 +0000 (+0100) Subject: ][next] selftests: nettest: fix spelling mistake: "potocol" -> "protocol" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a9e21bea1f815c2ec917ecc0efe0a7049c825d5b;p=linux.git ][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 Acked-by: Shuah Khan Signed-off-by: David S. Miller --- diff --git a/tools/testing/selftests/net/nettest.c b/tools/testing/selftests/net/nettest.c index 9278f8460d75a..83515e5ea4dcc 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;