blob: 7678b842a66cb406be044ea8b1f90d12d46958a7 [file] [log] [blame] [raw]
Index: UPDATING
===================================================================
--- UPDATING (版本 326359)
+++ UPDATING (版本 326723)
@@ -1,5 +1,5 @@
Updating Information for FreeBSD current users
-
+2
This file is maintained and copyrighted by M. Warner Losh <imp@freebsd.org>.
See end of file for further details. For commonly done items, please see the
COMMON ITEMS: section later in the file. These instructions assume that you
@@ -16,6 +16,10 @@
stable/10, and then rebuild without this option. The bootstrap process from
older version of current is a bit fragile.
+20171209 p26 FreeBSD-SA-17:12.openssl
+
+ Fix OpenSSL error state vulnerability.
+
20171129 p25 FreeBSD-SA-17:11.openssl
Fix OpenSSL out-of-bounds read vulnerability.
Index: crypto/openssl/ssl/ssl.h
===================================================================
--- crypto/openssl/ssl/ssl.h (版本 326359)
+++ crypto/openssl/ssl/ssl.h (版本 326723)
@@ -1544,7 +1544,7 @@
# 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
Index: sys/conf/newvers.sh
===================================================================
--- sys/conf/newvers.sh (版本 326359)
+++ sys/conf/newvers.sh (版本 326723)
@@ -32,7 +32,7 @@
TYPE="FreeBSD"
REVISION="10.3"
-BRANCH="RELEASE-p25"
+BRANCH="RELEASE-p26"
if [ "X${BRANCH_OVERRIDE}" != "X" ]; then
BRANCH=${BRANCH_OVERRIDE}
fi