From 45d16a44eb64df3c7df918520b828be4d41b35cb Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Fri, 19 Jan 2024 15:06:45 +0100 Subject: [PATCH] bio_f_noisy_dgram_filter(): Fix typo Reviewed-by: Hugo Landau Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/23588) --- test/helpers/noisydgrambio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/noisydgrambio.c b/test/helpers/noisydgrambio.c index 445ae3c4ad1..0dab50762ae 100644 --- a/test/helpers/noisydgrambio.c +++ b/test/helpers/noisydgrambio.c @@ -376,7 +376,7 @@ const BIO_METHOD *bio_f_noisy_dgram_filter(void) { if (method_noisy_dgram == NULL) { method_noisy_dgram = BIO_meth_new(BIO_TYPE_NOISY_DGRAM_FILTER, - "Nosiy datagram filter"); + "Noisy datagram filter"); if (method_noisy_dgram == NULL || !BIO_meth_set_ctrl(method_noisy_dgram, noisy_dgram_ctrl) || !BIO_meth_set_sendmmsg(method_noisy_dgram, noisy_dgram_sendmmsg) -- 2.47.2