diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-05-05 07:48:08 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-05-05 07:48:08 +0000 |
commit | 11dfaee9dfab851d2d2c914bf75f40e7d1f78519 (patch) | |
tree | d5d2cdf7815d3def2ec22255da975386deff1888 /lib/libcrypto | |
parent | 0e1dc54c73e8173eec8b76f37700249b1611597d (diff) |
Fix includes of the removed kdferr.h
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/kdf/kdf.h | 3 | ||||
-rw-r--r-- | lib/libcrypto/kdf/kdf_err.c | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/lib/libcrypto/kdf/kdf.h b/lib/libcrypto/kdf/kdf.h index d66107e9541..f161752c138 100644 --- a/lib/libcrypto/kdf/kdf.h +++ b/lib/libcrypto/kdf/kdf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: kdf.h,v 1.5 2022/05/04 18:49:50 tb Exp $ */ +/* $OpenBSD: kdf.h,v 1.6 2022/05/05 07:48:07 tb Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. @@ -55,7 +55,6 @@ #ifndef HEADER_KDF_H # define HEADER_KDF_H -# include <openssl/kdferr.h> #ifdef __cplusplus extern "C" { #endif diff --git a/lib/libcrypto/kdf/kdf_err.c b/lib/libcrypto/kdf/kdf_err.c index 9d9644cd1d0..b590d3e1357 100644 --- a/lib/libcrypto/kdf/kdf_err.c +++ b/lib/libcrypto/kdf/kdf_err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kdf_err.c,v 1.6 2022/05/04 19:34:26 tb Exp $ */ +/* $OpenBSD: kdf_err.c,v 1.7 2022/05/05 07:48:07 tb Exp $ */ /* ==================================================================== * Copyright (c) 1999-2018 The OpenSSL Project. All rights reserved. * @@ -58,7 +58,7 @@ */ #include <openssl/err.h> -#include <openssl/kdferr.h> +#include <openssl/kdf.h> #ifndef OPENSSL_NO_ERR |