diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-06-26 14:47:03 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-07-05 01:03:04 +0200 |
commit | d6e7ebba3370e06ea4dfae6381dfe0e1c21070e3 (patch) | |
tree | dfe11d5e37d4bffe5c2f0de725c34cd884cc5c3a /ssl/t1_lib.c | |
parent | QUIC SSL: Block SSL_clear (diff) | |
download | openssl-d6e7ebba3370e06ea4dfae6381dfe0e1c21070e3.tar.xz openssl-d6e7ebba3370e06ea4dfae6381dfe0e1c21070e3.zip |
Minor fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20061)
Diffstat (limited to 'ssl/t1_lib.c')
-rw-r--r-- | ssl/t1_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 93e5ecb497..631e1fdef9 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -24,6 +24,7 @@ #include "internal/sizes.h" #include "internal/tlsgroups.h" #include "ssl_local.h" +#include "quic/quic_local.h" #include <openssl/ct.h> static const SIGALG_LOOKUP *find_sig_alg(SSL_CONNECTION *s, X509 *x, EVP_PKEY *pkey); @@ -3866,7 +3867,7 @@ int SSL_set_tlsext_max_fragment_length(SSL *ssl, uint8_t mode) SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl); if (sc == NULL - || (IS_QUIC_SSL(ssl) && mode != TLSEXT_max_fragment_length_DISABLED)) + || (IS_QUIC(ssl) && mode != TLSEXT_max_fragment_length_DISABLED)) return 0; if (mode != TLSEXT_max_fragment_length_DISABLED |