Skip to content

Commit

Permalink
QUIC APL: Fix bug around default XSO handling on server side
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from #23334)
  • Loading branch information
hlandau committed Mar 9, 2024
1 parent 74ca198 commit a7554c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/quic/quic_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ static int ossl_unused expect_quic_with_stream_lock(const SSL *s, int remote_ini
/* ossl_quic_do_handshake raised error here */
goto err;

if (remote_init == 0) {
if (remote_init == ctx->qc->as_server) {
if (!qc_try_create_default_xso_for_write(ctx))
goto err;
} else {
Expand Down

0 comments on commit a7554c9

Please sign in to comment.