From: Paul Yang Date: Fri, 9 Sep 2022 07:48:24 +0000 (+0800) Subject: Fix PROV_RC5_CTX's original structure name X-Git-Tag: openssl-3.2.0-alpha1~2102 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=53ef02baf80130a81d019e85c528fdc13af9db33;p=thirdparty%2Fopenssl.git Fix PROV_RC5_CTX's original structure name It looks like a typo when copy & pasting the structure from blowfish. Reviewed-by: Shane Lontis Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/19186) --- diff --git a/providers/implementations/ciphers/cipher_rc5.h b/providers/implementations/ciphers/cipher_rc5.h index c630e7c87bf..421632f2ea1 100644 --- a/providers/implementations/ciphers/cipher_rc5.h +++ b/providers/implementations/ciphers/cipher_rc5.h @@ -10,7 +10,7 @@ #include #include "prov/ciphercommon.h" -typedef struct prov_blowfish_ctx_st { +typedef struct prov_rc5_ctx_st { PROV_CIPHER_CTX base; /* Must be first */ union { OSSL_UNION_ALIGN;