summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-04-17 13:18:00 +0000
committertb <>2023-04-17 13:18:00 +0000
commitd4ea3bce6cb1963271cd32a7044eee6070404e56 (patch)
treea1a943db6631ba8a59923024a35f229a9244b7f8 /src
parentd8dee4a3ad7e9f5d1075d150faf3862f903b10f9 (diff)
downloadopenbsd-d4ea3bce6cb1963271cd32a7044eee6070404e56.tar.gz
openbsd-d4ea3bce6cb1963271cd32a7044eee6070404e56.tar.bz2
openbsd-d4ea3bce6cb1963271cd32a7044eee6070404e56.zip
c_zlib.c needs bio_local.h with -DZLIB.
Apparently nobody tried to compile libcrypto with ZLI since Jan 2022. Maybe this means that we can unifdef -U ZLIB or maybe not...
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/comp/c_zlib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/comp/c_zlib.c b/src/lib/libcrypto/comp/c_zlib.c
index 9db0ae26bc..009737d59d 100644
--- a/src/lib/libcrypto/comp/c_zlib.c
+++ b/src/lib/libcrypto/comp/c_zlib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: c_zlib.c,v 1.25 2022/12/26 07:18:51 jmc Exp $ */ 1/* $OpenBSD: c_zlib.c,v 1.26 2023/04/17 13:18:00 tb Exp $ */
2/* 2/*
3 * --------------------------------------------------------------------------- 3 * ---------------------------------------------------------------------------
4 * Major patches to this file were contributed by 4 * Major patches to this file were contributed by
@@ -122,6 +122,7 @@
122#include <openssl/comp.h> 122#include <openssl/comp.h>
123#include <openssl/err.h> 123#include <openssl/err.h>
124 124
125#include "bio_local.h"
125#include "comp_local.h" 126#include "comp_local.h"
126 127
127COMP_METHOD *COMP_zlib(void ); 128COMP_METHOD *COMP_zlib(void );