summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2021-01-11 18:26:25 +0000
committertb <>2021-01-11 18:26:25 +0000
commitacd2ad32f8c084961aa89f6e4b1feac23a143ee4 (patch)
tree71175be95bde08bc90bdb7e0cc8511e7a0bc8e7a
parent9bfec8d5bc1cfb74b237ff27122a6399bd54b8d3 (diff)
downloadopenbsd-acd2ad32f8c084961aa89f6e4b1feac23a143ee4.tar.gz
openbsd-acd2ad32f8c084961aa89f6e4b1feac23a143ee4.tar.bz2
openbsd-acd2ad32f8c084961aa89f6e4b1feac23a143ee4.zip
Include headers used instead of relying on ssl.h pulling in the world.
-rw-r--r--src/regress/lib/libssl/unit/ssl_get_shared_ciphers.c8
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
22struct peer_config { 28struct peer_config {