summaryrefslogtreecommitdiffstats
path: root/ssl/t1_enc.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-11-22 09:31:12 +0000
committerMatt Caswell <matt@openssl.org>2016-11-23 09:50:26 +0000
commit82c9c030173898b9536a1c8da4e49b4b19251dbd (patch)
tree7543ca6c2343e9bd54f8005e87b7da06d60cccce /ssl/t1_enc.c
parent19cb71ef6e414759d737918bab10be2cc1d8bd99 (diff)
Fix EXTMS error introduced by commit 94ed2c6
Commit 94ed2c6 dropped a ! operator by mistake, which causes extended master secret connections to fail. This puts in back. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/t1_enc.c')
-rw-r--r--ssl/t1_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
index 37cd25d8dd..d97b9a8ea9 100644
--- a/ssl/t1_enc.c
+++ b/ssl/t1_enc.c
@@ -480,7 +480,7 @@ int tls1_generate_master_secret(SSL *s, unsigned char *out, unsigned char *p,
* handshake hash). This will need to be removed later
*/
if ((s->session->flags & SSL_SESS_FLAG_EXTMS)
- && SSL_IS_TLS13(s)) {
+ && !SSL_IS_TLS13(s)) {
unsigned char hash[EVP_MAX_MD_SIZE * 2];
size_t hashlen;
/*