diff options
author | tb <> | 2021-01-11 18:26:25 +0000 |
---|---|---|
committer | tb <> | 2021-01-11 18:26:25 +0000 |
commit | 87e0fa60e183caf837c854be40350ac275e4a7b8 (patch) | |
tree | 71175be95bde08bc90bdb7e0cc8511e7a0bc8e7a /src | |
parent | 75a29aff7e93987e4d69a00ff02242cb0571b848 (diff) | |
download | openbsd-87e0fa60e183caf837c854be40350ac275e4a7b8.tar.gz openbsd-87e0fa60e183caf837c854be40350ac275e4a7b8.tar.bz2 openbsd-87e0fa60e183caf837c854be40350ac275e4a7b8.zip |
Include headers used instead of relying on ssl.h pulling in the world.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/unit/ssl_get_shared_ciphers.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/unit/ssl_get_shared_ciphers.c b/src/regress/lib/libssl/unit/ssl_get_shared_ciphers.c index ad46e210e2..306cc6ac23 100644 --- a/src/regress/lib/libssl/unit/ssl_get_shared_ciphers.c +++ b/src/regress/lib/libssl/unit/ssl_get_shared_ciphers.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_get_shared_ciphers.c,v 1.3 2021/01/10 23:59:32 tb Exp $ */ | 1 | /* $OpenBSD: ssl_get_shared_ciphers.c,v 1.4 2021/01/11 18:26:25 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2021 Theo Buehler <tb@openbsd.org> | 3 | * Copyright (c) 2021 Theo Buehler <tb@openbsd.org> |
4 | * | 4 | * |
@@ -16,7 +16,13 @@ | |||
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <stdint.h> | 18 | #include <stdint.h> |
19 | #include <stdio.h> | ||
20 | #include <stdlib.h> | ||
21 | #include <string.h> | ||
22 | |||
23 | #include <openssl/bio.h> | ||
19 | #include <openssl/err.h> | 24 | #include <openssl/err.h> |
25 | #include <openssl/crypto.h> | ||
20 | #include <openssl/ssl.h> | 26 | #include <openssl/ssl.h> |
21 | 27 | ||
22 | struct peer_config { | 28 | struct peer_config { |