diff options
author | Richard Levitte <levitte@openssl.org> | 2020-04-13 22:34:56 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-04-28 15:37:37 +0200 |
commit | f844f9eb44186df2f8b0cfd3264b4eb003d8c61a (patch) | |
tree | 29860f9c269b67546a418c0197066164e455a362 /crypto/threads_pthread.c | |
parent | Configurations: Identify the shell variables around MANSUFFIX (diff) | |
download | openssl-f844f9eb44186df2f8b0cfd3264b4eb003d8c61a.tar.xz openssl-f844f9eb44186df2f8b0cfd3264b4eb003d8c61a.zip |
Rename FIPS_MODE to FIPS_MODULE
This macro is used to determine if certain pieces of code should
become part of the FIPS module or not. The old name was confusing.
Fixes #11538
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/11539)
Diffstat (limited to 'crypto/threads_pthread.c')
-rw-r--r-- | crypto/threads_pthread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/threads_pthread.c b/crypto/threads_pthread.c index 762da60a87..59aa960a34 100644 --- a/crypto/threads_pthread.c +++ b/crypto/threads_pthread.c @@ -190,7 +190,7 @@ int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock) return 1; } -# ifndef FIPS_MODE +# ifndef FIPS_MODULE /* TODO(3.0): No fork protection in FIPS module yet! */ # ifdef OPENSSL_SYS_UNIX @@ -211,7 +211,7 @@ int openssl_init_fork_handlers(void) # endif return 0; } -# endif /* FIPS_MODE */ +# endif /* FIPS_MODULE */ int openssl_get_fork_id(void) { |