summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-05-14 14:28:06 +0100
committerMatt Caswell <matt@openssl.org>2018-05-14 17:43:19 +0100
commit199dc0d3e857fa4242d90d89a0df52e87b975c67 (patch)
treefa76925f959b61dc82850d0fe610f10b86db6180
parent986caf9e34fd60366a5b3711bb12e239e43a2431 (diff)
Fix no-psk
Fixes #6239 Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6253)
-rw-r--r--ssl/s3_lib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index c5f22359d5..354769b0c1 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -4192,6 +4192,7 @@ const SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
}
if (SSL_IS_TLS13(s)) {
+#ifndef OPENSSL_NO_PSK
int j;
/*
@@ -4208,6 +4209,7 @@ const SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
prefer_sha256 = 1;
}
}
+#endif
} else {
tls1_set_cert_validity(s);
ssl_set_masks(s);