diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-15 16:05:50 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-15 16:05:50 +0000 |
commit | 57f6d3745540b5b5292979cec88db474557a29d4 (patch) | |
tree | 46e1cbc3c3bac8e29c0d896eb31d574a7669c98f /lib/libcrypto | |
parent | 64ca315dd9d4e83d6a6ddc6e6ec3823e4e1b79bf (diff) |
Include the correct header
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/o_fips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/o_fips.c b/lib/libcrypto/o_fips.c index b0190b18e6e..c3eb6c455f6 100644 --- a/lib/libcrypto/o_fips.c +++ b/lib/libcrypto/o_fips.c @@ -1,4 +1,4 @@ -/* $OpenBSD: o_fips.c,v 1.7 2024/04/10 14:51:02 beck Exp $ */ +/* $OpenBSD: o_fips.c,v 1.8 2024/04/15 16:05:49 tb Exp $ */ /* Written by Stephen Henson (steve@openssl.org) for the OpenSSL * project 2011. */ @@ -58,7 +58,7 @@ #include <openssl/err.h> -#include "cryptlib.h" +#include <openssl/crypto.h> int FIPS_mode(void) |