From: Masatake YAMATO Date: Tue, 31 Jan 2023 12:07:22 +0000 (+0900) Subject: tests: (mkfds) fix typos in error messages X-Git-Tag: v2.39-rc1~96^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8c6094f4e7c3c84d09afb009007f1fc86fe35a4;p=thirdparty%2Futil-linux.git tests: (mkfds) fix typos in error messages Signed-off-by: Masatake YAMATO --- diff --git a/tests/helpers/test_mkfds.c b/tests/helpers/test_mkfds.c index bcb13c84e7..49a1582fbf 100644 --- a/tests/helpers/test_mkfds.c +++ b/tests/helpers/test_mkfds.c @@ -1332,7 +1332,7 @@ static void *make_tcp(const struct factory *factory, struct fdesc fdescs[], close(ssd); close(csd); errno = e; - err(EXIT_FAILURE, "failed to connect a client socket to the serer socket"); + err(EXIT_FAILURE, "failed to connect a client socket to the server socket"); } asd = accept(ssd, NULL, NULL); @@ -1433,7 +1433,7 @@ static void *make_udp(const struct factory *factory, struct fdesc fdescs[], int e = errno; close(ssd); errno = e; - err(EXIT_FAILURE, "failed to bind a srever socket"); + err(EXIT_FAILURE, "failed to bind a server socket"); } } @@ -1487,7 +1487,7 @@ static void *make_udp(const struct factory *factory, struct fdesc fdescs[], close(ssd); close(csd); errno = e; - err(EXIT_FAILURE, "failed to connect a client socket to the serer socket"); + err(EXIT_FAILURE, "failed to connect a client socket to the server socket"); } }