From 1310a0d70ccd50db45a94b740d227e7cd7d73aa3 Mon Sep 17 00:00:00 2001 From: gordon Date: Sat, 9 Dec 2017 03:41:31 +0000 Subject: [PATCH] Fix error state handling. Security: CVE-2017-3737 Security: FreeBSD-SA-17:12.openssl git-svn-id: svn://svn.freebsd.org/base/stable/10@326721 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- crypto/openssl/ssl/ssl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/openssl/ssl/ssl.h b/crypto/openssl/ssl/ssl.h index c15067203..44ef4a304 100644 --- a/crypto/openssl/ssl/ssl.h +++ b/crypto/openssl/ssl/ssl.h @@ -1544,7 +1544,7 @@ extern "C" { # define SSL_ST_BEFORE 0x4000 # define SSL_ST_OK 0x03 # define SSL_ST_RENEGOTIATE (0x04|SSL_ST_INIT) -# define SSL_ST_ERR 0x05 +# define SSL_ST_ERR (0x05|SSL_ST_INIT) # define SSL_CB_LOOP 0x01 # define SSL_CB_EXIT 0x02 -- 2.45.0