diff options
author | Tomas Mraz <tomas@openssl.org> | 2024-01-19 15:06:45 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-03-15 10:19:19 +0100 |
commit | 45d16a44eb64df3c7df918520b828be4d41b35cb (patch) | |
tree | 5001b36a45d7a794c42af9f391af1fe448c30829 | |
parent | SSL_add_dir_cert_subjects_to_stack(): Documented return values (diff) | |
download | openssl-45d16a44eb64df3c7df918520b828be4d41b35cb.tar.xz openssl-45d16a44eb64df3c7df918520b828be4d41b35cb.zip |
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.c | 2 |
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) |