[openssl-commits] [openssl] master update
Matt Caswell
matt at openssl.org
Wed Jul 4 09:42:58 UTC 2018
The branch master has been updated
via a97d19f7ce93845997a8f75f522f0331899ed5f4 (commit)
from a9f3f1ccbbf84f4ef804ede82d4b072492b54c03 (commit)
- Log -----------------------------------------------------------------
commit a97d19f7ce93845997a8f75f522f0331899ed5f4
Author: Matt Caswell <matt at openssl.org>
Date: Tue Jul 3 13:36:31 2018 +0100
Fix no-tls1_2
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6634)
-----------------------------------------------------------------------
Summary of changes:
test/sslapitest.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/sslapitest.c b/test/sslapitest.c
index 598b02a..64f8f59 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -5097,11 +5097,11 @@ static int test_shutdown(int tst)
size_t written, readbytes;
#ifdef OPENSSL_NO_TLS1_2
- if (tst == 0)
+ if (tst <= 1)
return 1;
#endif
#ifdef OPENSSL_NO_TLS1_3
- if (tst != 0)
+ if (tst >= 2)
return 1;
#endif
More information about the openssl-commits
mailing list