Skip to content

Commit

Permalink
][next] selftests: nettest: fix spelling mistake: "potocol" -> "proto…
Browse files Browse the repository at this point in the history
…col"

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>
  • Loading branch information
Colin Ian King authored and David S. Miller committed Aug 5, 2019
1 parent 9e8fb25 commit a9e21be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/testing/selftests/net/nettest.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a9e21be

Please sign in to comment.