aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2020-08-31 08:07:13 +0200
committerShane Lontis <shane.lontis@oracle.com>2020-09-03 10:54:00 +1000
commit6f04bcc7e3b258f4a075279515881b13bd3fd04c (patch)
tree0c21f45c039c63529512a08b777603239e36e965
parent1010e4ac9743a273d12e4f7c49959607aa4f6403 (diff)
downloadopenssl-6f04bcc7e3b258f4a075279515881b13bd3fd04c.zip
openssl-6f04bcc7e3b258f4a075279515881b13bd3fd04c.tar.gz
openssl-6f04bcc7e3b258f4a075279515881b13bd3fd04c.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_gen.c b/crypto/rsa/rsa_gen.c
index 1cdc8d9..b7a37b7 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);
}