diff options
author | tb <> | 2022-05-05 07:48:07 +0000 |
---|---|---|
committer | tb <> | 2022-05-05 07:48:07 +0000 |
commit | c6eb9dd9bbc883f07fcfdfdbadd1c8a6323a9045 (patch) | |
tree | 383b7265bcc7dc88f87f49cf62669cc090e5f5dd | |
parent | 65b48096260f774ebb17f5d3ea3d86ea3aa778fb (diff) | |
download | openbsd-c6eb9dd9bbc883f07fcfdfdbadd1c8a6323a9045.tar.gz openbsd-c6eb9dd9bbc883f07fcfdfdbadd1c8a6323a9045.tar.bz2 openbsd-c6eb9dd9bbc883f07fcfdfdbadd1c8a6323a9045.zip |
Fix includes of the removed kdferr.h
-rw-r--r-- | src/lib/libcrypto/kdf/kdf.h | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/kdf/kdf_err.c | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/kdf/kdf.h b/src/lib/libcrypto/kdf/kdf.h index d66107e954..f161752c13 100644 --- a/src/lib/libcrypto/kdf/kdf.h +++ b/src/lib/libcrypto/kdf/kdf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kdf.h,v 1.5 2022/05/04 18:49:50 tb Exp $ */ | 1 | /* $OpenBSD: kdf.h,v 1.6 2022/05/05 07:48:07 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -55,7 +55,6 @@ | |||
55 | #ifndef HEADER_KDF_H | 55 | #ifndef HEADER_KDF_H |
56 | # define HEADER_KDF_H | 56 | # define HEADER_KDF_H |
57 | 57 | ||
58 | # include <openssl/kdferr.h> | ||
59 | #ifdef __cplusplus | 58 | #ifdef __cplusplus |
60 | extern "C" { | 59 | extern "C" { |
61 | #endif | 60 | #endif |
diff --git a/src/lib/libcrypto/kdf/kdf_err.c b/src/lib/libcrypto/kdf/kdf_err.c index 9d9644cd1d..b590d3e135 100644 --- a/src/lib/libcrypto/kdf/kdf_err.c +++ b/src/lib/libcrypto/kdf/kdf_err.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kdf_err.c,v 1.6 2022/05/04 19:34:26 tb Exp $ */ | 1 | /* $OpenBSD: kdf_err.c,v 1.7 2022/05/05 07:48:07 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1999-2018 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999-2018 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -58,7 +58,7 @@ | |||
58 | */ | 58 | */ |
59 | 59 | ||
60 | #include <openssl/err.h> | 60 | #include <openssl/err.h> |
61 | #include <openssl/kdferr.h> | 61 | #include <openssl/kdf.h> |
62 | 62 | ||
63 | #ifndef OPENSSL_NO_ERR | 63 | #ifndef OPENSSL_NO_ERR |
64 | 64 | ||