]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
bio_f_noisy_dgram_filter(): Fix typo
authorTomas Mraz <tomas@openssl.org>
Fri, 19 Jan 2024 14:06:45 +0000 (15:06 +0100)
committerTomas Mraz <tomas@openssl.org>
Fri, 15 Mar 2024 09:19:19 +0000 (10:19 +0100)
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23588)

test/helpers/noisydgrambio.c

index 445ae3c4ad1b3712d99b6265250ee3295db11824..0dab50762ae97bc2bb80e40a4dc9d880fb3148a3 100644 (file)
@@ -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)