diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2020-08-31 08:07:13 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2020-09-03 10:54:00 +1000 |
commit | 6f04bcc7e3b258f4a075279515881b13bd3fd04c (patch) | |
tree | 0c21f45c039c63529512a08b777603239e36e965 | |
parent | 1010e4ac9743a273d12e4f7c49959607aa4f6403 (diff) | |
download | openssl-new-6f04bcc7e3b258f4a075279515881b13bd3fd04c.tar.gz |
Fix typo in FIPS_MODULE endif macro comment
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12755)
-rw-r--r-- | crypto/rsa/rsa_gen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_gen.c b/crypto/rsa/rsa_gen.c index 1cdc8d91e8..b7a37b77a2 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); } |