From: Daniel Bevenius Date: Mon, 31 Aug 2020 06:07:13 +0000 (+0200) Subject: Fix typo in FIPS_MODULE endif macro comment X-Git-Tag: openssl-3.0.0-alpha7~416 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6f04bcc7e3b258f4a075279515881b13bd3fd04c;p=thirdparty%2Fopenssl.git Fix typo in FIPS_MODULE endif macro comment Reviewed-by: David von Oheimb Reviewed-by: Matt Caswell Reviewed-by: Paul Dale Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/12755) --- diff --git a/crypto/rsa/rsa_gen.c b/crypto/rsa/rsa_gen.c index 1cdc8d91e88..b7a37b77a21 100644 --- a/crypto/rsa/rsa_gen.c +++ b/crypto/rsa/rsa_gen.c @@ -66,7 +66,7 @@ int RSA_generate_multi_prime_key(RSA *rsa, int bits, int primes, else return 0; } -#endif /* FIPS_MODUKE */ +#endif /* FIPS_MODULE */ return rsa_keygen(rsa->libctx, rsa, bits, primes, e_value, cb, 0); }