Skip to content

Commit 923bea1

Browse files
committed
Fix unit tests with libressl 3.4.1
1 parent fe3bdc5 commit 923bea1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

22

3-
### SSLproxy 0.9.2 2021-11-13
3+
### SSLproxy 0.9.2 2021-11-14
44

55
- Update with the license change of the Aho Corasick library to the LGPL.
6+
- Migrate to travis-ci.com.
67
- Various fixes and improvements.
78

89

tests/check/opts.t.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ static char *argv14[] = {
9494
#define NATENGINE "pf"
9595
#endif
9696

97-
#if (OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER))
97+
#if OPENSSL_VERSION_NUMBER >= 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x3040100fL)
9898
#ifdef HAVE_TLSV13
9999
#define SSL_PROTO_CONFIG_PROXYSPEC "tls13 -tls13>=tls11<=tls12|no sslcomp|no_tls13"
100100
#define SSL_PROTO_CONFIG_FILTERRULE "tls13 -tls13>=tls10<=tls11|no_tls13"

0 commit comments

Comments
 (0)