diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2022-10-02 16:36:43 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2022-10-02 16:36:43 +0000 |
commit | 121f4d5e6cd8260daf18468d86d19d058e3092af (patch) | |
tree | cc566376862eeeb77c4a1a82ccd648a03afb6f34 /lib/libssl/tls13_client.c | |
parent | 2d6404eaa0d21ce6d72f63eea099e7c79d4a23f0 (diff) |
Get rid of SSL_CTX_INTERNAL and SSL_INTERNAL.
These are no longer necessary due to SSL_CTX and SSL now being fully
opaque. Merge SSL_CTX_INTERNAL back into SSL_CTX and SSL_INTERNAL back
into SSL.
Prompted by tb@
Diffstat (limited to 'lib/libssl/tls13_client.c')
-rw-r--r-- | lib/libssl/tls13_client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/tls13_client.c b/lib/libssl/tls13_client.c index 33ef55d2ec0..746447cc137 100644 --- a/lib/libssl/tls13_client.c +++ b/lib/libssl/tls13_client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_client.c,v 1.99 2022/09/11 14:33:07 jsing Exp $ */ +/* $OpenBSD: tls13_client.c,v 1.100 2022/10/02 16:36:42 jsing Exp $ */ /* * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> * @@ -39,7 +39,7 @@ tls13_client_init(struct tls13_ctx *ctx) s->version = ctx->hs->our_max_tls_version; tls13_record_layer_set_retry_after_phh(ctx->rl, - (s->internal->mode & SSL_MODE_AUTO_RETRY) != 0); + (s->mode & SSL_MODE_AUTO_RETRY) != 0); if (!ssl_get_new_session(s, 0)) /* XXX */ return 0; |