diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/o_fips.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/o_fips.c b/src/lib/libcrypto/o_fips.c index b1487e3be3..b0190b18e6 100644 --- a/src/lib/libcrypto/o_fips.c +++ b/src/lib/libcrypto/o_fips.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: o_fips.c,v 1.6 2021/10/23 13:57:00 schwarze Exp $ */ | 1 | /* $OpenBSD: o_fips.c,v 1.7 2024/04/10 14:51:02 beck Exp $ */ |
2 | /* Written by Stephen Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Stephen Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2011. | 3 | * project 2011. |
4 | */ | 4 | */ |
@@ -65,6 +65,7 @@ FIPS_mode(void) | |||
65 | { | 65 | { |
66 | return 0; | 66 | return 0; |
67 | } | 67 | } |
68 | LCRYPTO_ALIAS(FIPS_mode); | ||
68 | 69 | ||
69 | int | 70 | int |
70 | FIPS_mode_set(int r) | 71 | FIPS_mode_set(int r) |
@@ -74,3 +75,4 @@ FIPS_mode_set(int r) | |||
74 | CRYPTOerror(CRYPTO_R_FIPS_MODE_NOT_SUPPORTED); | 75 | CRYPTOerror(CRYPTO_R_FIPS_MODE_NOT_SUPPORTED); |
75 | return 0; | 76 | return 0; |
76 | } | 77 | } |
78 | LCRYPTO_ALIAS(FIPS_mode_set); | ||