diff mbox series

selftests: net: fix grammar in reuseaddr_ports_exhausted.c log message

Message ID 20250211170633.4458-1-pranav.tyagi03@gmail.com (mailing list archive)
State New
Headers show
Series selftests: net: fix grammar in reuseaddr_ports_exhausted.c log message | expand

Commit Message

Pranav Tyagi Feb. 11, 2025, 5:06 p.m. UTC
This patch fixes a grammatical error in a test log message in
reuseaddr_ports_exhausted.c for better clarity as a part of lfx
application tasks

Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
---
 tools/testing/selftests/net/reuseaddr_ports_exhausted.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Horman Feb. 11, 2025, 6 p.m. UTC | #1
On Tue, Feb 11, 2025 at 10:36:33PM +0530, Pranav Tyagi wrote:
> This patch fixes a grammatical error in a test log message in
> reuseaddr_ports_exhausted.c for better clarity as a part of lfx
> application tasks
> 
> Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>

Hi Pranav,

As this is a patch for Networking it should probably be submitted to
netdev@vger.kernel.org and targeted at the net-next tree, like this:

	Subject: [PATCH net-next] ...

Please take a look over the document at the link below
and don't hesitate to reach out to me if you have any questions.

https://docs.kernel.org/process/maintainer-netdev.html
diff mbox series

Patch

diff --git a/tools/testing/selftests/net/reuseaddr_ports_exhausted.c b/tools/testing/selftests/net/reuseaddr_ports_exhausted.c
index 066efd30e294..7b9bf8a7bbe1 100644
--- a/tools/testing/selftests/net/reuseaddr_ports_exhausted.c
+++ b/tools/testing/selftests/net/reuseaddr_ports_exhausted.c
@@ -112,7 +112,7 @@  TEST(reuseaddr_ports_exhausted_reusable_same_euid)
 		ASSERT_NE(-1, fd[0]) TH_LOG("failed to bind.");
 
 		if (opts->reuseport[0] && opts->reuseport[1]) {
-			EXPECT_EQ(-1, fd[1]) TH_LOG("should fail to bind because both sockets succeed to be listened.");
+			EXPECT_EQ(-1, fd[1]) TH_LOG("should fail to bind because both sockets successfully listened.");
 		} else {
 			EXPECT_NE(-1, fd[1]) TH_LOG("should succeed to bind to connect to different destinations.");
 		}