Fix no-psk
Fixes #6239 Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6253)
This commit is contained in:
parent
986caf9e34
commit
199dc0d3e8
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue