diff options
author | Kuniyuki Iwashima <kuniyu@amazon.com> | 2023-09-11 21:36:58 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-09-13 09:18:04 +0300 |
commit | 0071d15517b4a3d265abc00395beb1138e7236c7 (patch) | |
tree | bde66fb6dca2b65778797a777145c0e28bd0ba1c /tools | |
parent | c48ef9c4aed3632566b57ba66cec6ec78624d4cb (diff) | |
download | linux-0071d15517b4a3d265abc00395beb1138e7236c7.tar.xz |
selftest: tcp: Fix address length in bind_wildcard.c.
The selftest passes the IPv6 address length for an IPv4 address.
We should pass the correct length.
Note inet_bind_sk() does not check if the size is larger than
sizeof(struct sockaddr_in), so there is no real bug in this
selftest.
Fixes: 13715acf8ab5 ("selftest: Add test for bind() conflicts.")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/net/bind_wildcard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/bind_wildcard.c b/tools/testing/selftests/net/bind_wildcard.c index 58edfc15d28b..e7ebe72e879d 100644 --- a/tools/testing/selftests/net/bind_wildcard.c +++ b/tools/testing/selftests/net/bind_wildcard.c @@ -100,7 +100,7 @@ void bind_sockets(struct __test_metadata *_metadata, TEST_F(bind_wildcard, v4_v6) { bind_sockets(_metadata, self, - (struct sockaddr *)&self->addr4, sizeof(self->addr6), + (struct sockaddr *)&self->addr4, sizeof(self->addr4), (struct sockaddr *)&self->addr6, sizeof(self->addr6)); } |