From: Dr. Stephen Henson Date: Sat, 7 Jun 2014 14:21:13 +0000 (+0100) Subject: Make tls_session_secret_cb work with CVE-2014-0224 fix. X-Git-Tag: upstream/1.0.1i~103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de868388d29bdc41a89658eb250852312eda8e90;p=platform%2Fupstream%2Fopenssl.git Make tls_session_secret_cb work with CVE-2014-0224 fix. If application uses tls_session_secret_cb for session resumption set the CCS_OK flag. (cherry picked from commit 953c592572e8811b7956cc09fbd8e98037068b58) --- diff --git a/ssl/s3_clnt.c b/ssl/s3_clnt.c index 0457af8..167bfc6 100644 --- a/ssl/s3_clnt.c +++ b/ssl/s3_clnt.c @@ -901,6 +901,7 @@ int ssl3_get_server_hello(SSL *s) { s->session->cipher = pref_cipher ? pref_cipher : ssl_get_cipher_by_char(s, p+j); + s->s3->flags |= SSL3_FLAGS_CCS_OK; } } #endif /* OPENSSL_NO_TLSEXT */