From c8032570222ab6d45d138d2945c764721676adf5 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 4 Jun 2022 09:20:36 +0200 Subject: [PATCH] Fix typos not found by codespell Signed-off-by: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> --- RELNOTES.md | 2 +- src/iperf_udp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELNOTES.md b/RELNOTES.md index 81ad3dc79..caf17bc0f 100644 --- a/RELNOTES.md +++ b/RELNOTES.md @@ -891,7 +891,7 @@ iperf 3.0b4 2010-08-02 * Setting TCP window size (-w) is now supported * Updates to iperf_error * Added new errors - * Should generate more relavent messages + * Should generate more relevant messages * Stream list now managed by queue.h macros * Test structures are now kept intact after a test is run (for API users) * Improved interval timer granularity diff --git a/src/iperf_udp.c b/src/iperf_udp.c index 61bfb7217..b697c9729 100644 --- a/src/iperf_udp.c +++ b/src/iperf_udp.c @@ -568,7 +568,7 @@ iperf_udp_connect(struct iperf_test *test) */ buf = UDP_CONNECT_MSG; if (test->debug) { - printf("Sending Connect message to Sockt %d\n", s); + printf("Sending Connect message to Socket %d\n", s); } if (write(s, &buf, sizeof(buf)) < 0) { // XXX: Should this be changed to IESTREAMCONNECT?