summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2024-01-19 15:06:45 +0100
committerTomas Mraz <tomas@openssl.org>2024-03-15 10:19:19 +0100
commit45d16a44eb64df3c7df918520b828be4d41b35cb (patch)
tree5001b36a45d7a794c42af9f391af1fe448c30829
parent9f3a7ca2cfff948b21f8fdbe92069b3eea1c01fa (diff)
bio_f_noisy_dgram_filter(): Fix typo
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23588)
-rw-r--r--test/helpers/noisydgrambio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/noisydgrambio.c b/test/helpers/noisydgrambio.c
index 445ae3c4ad..0dab50762a 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)