Fix typo in FIPS_MODULE endif macro comment
authorDaniel Bevenius <daniel.bevenius@gmail.com>
Mon, 31 Aug 2020 06:07:13 +0000 (08:07 +0200)
committerShane Lontis <shane.lontis@oracle.com>
Thu, 3 Sep 2020 00:54:00 +0000 (10:54 +1000)
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)

crypto/rsa/rsa_gen.c

index 1cdc8d91e8823a88a9ee550f86acc420fd920227..b7a37b77a21f236394a45209da51dc9a0fe14098 100644 (file)
@@ -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);
 }