diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 16:02:35 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 16:02:35 +0000 |
commit | c6d7ecbc86ab6bacf26fdba96ac20a7732cf10fc (patch) | |
tree | ea32d69ded1ae252dc4bb5f767c4a4949b8b3c86 /lib/libssl | |
parent | bb81557174d0d226a2b46c3df9c6f52a5bd867d9 (diff) |
Also remove ecdh.h use from libssl
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/ssl_kex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/ssl_kex.c b/lib/libssl/ssl_kex.c index 85caf25e33c..fa420a35a36 100644 --- a/lib/libssl/ssl_kex.c +++ b/lib/libssl/ssl_kex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_kex.c,v 1.11 2023/06/27 11:03:41 tb Exp $ */ +/* $OpenBSD: ssl_kex.c,v 1.12 2023/07/28 16:02:34 tb Exp $ */ /* * Copyright (c) 2020, 2021 Joel Sing <jsing@openbsd.org> * @@ -20,7 +20,6 @@ #include <openssl/bn.h> #include <openssl/dh.h> #include <openssl/ec.h> -#include <openssl/ecdh.h> #include <openssl/evp.h> #include <openssl/objects.h> |