summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-30 17:00:16 +0100
committerHugo Landau <hlandau@openssl.org>2023-09-01 10:45:36 +0100
commit8d7f034622c0235d06f4d6526f71dcab2f71b0c6 (patch)
tree4afbf9655b468b1bb01f0a81e2e71da134705cd7 /ssl
parentabeb41b42fa3cdca99d3f3fef48ea6ee04023d68 (diff)
Minor fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21715)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_impl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index 11c8afce8a..bf1c412a09 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -1607,7 +1607,7 @@ static int quic_do_handshake(QCTX *ctx)
* Start connection process. Note we may come here multiple times in
* non-blocking mode, which is fine.
*/
- if (!ensure_channel_started(qc)) /* raises on failure */
+ if (!ensure_channel_started(ctx)) /* raises on failure */
return -1; /* Non-protocol error */
if (ossl_quic_channel_is_handshake_complete(qc->ch))