bpf: test: fix spelling mistake "REUSEEPORT" -> "REUSEPORT"
authorColin Ian King <colin.king@canonical.com>
Mon, 13 Aug 2018 14:00:32 +0000 (15:00 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Aug 2018 17:43:27 +0000 (10:43 -0700)
Trivial fix to spelling mistake in error message

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/testing/selftests/bpf/test_maps.c

index 4b7c74f..6f54f84 100644 (file)
@@ -1191,7 +1191,7 @@ static void prepare_reuseport_grp(int type, int map_fd,
 
                err = setsockopt(fd64, SOL_SOCKET, SO_REUSEPORT,
                                 &optval, sizeof(optval));
-               CHECK(err == -1, "setsockopt(SO_REUSEEPORT)",
+               CHECK(err == -1, "setsockopt(SO_REUSEPORT)",
                      "err:%d errno:%d\n", err, errno);
 
                /* reuseport_array does not allow unbound sk */