diff options
author | Hugo Landau <hlandau@openssl.org> | 2023-07-03 14:15:12 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-07-17 00:18:05 +0200 |
commit | 96b7df60b3e54641c6046fea31c7a5cb535c2eeb (patch) | |
tree | ae5627bb8fc84e2291acb5c08c083d98b46cc9ab /ssl/quic/quic_stream_map.c | |
parent | QUIC: Multistream test fixes (diff) | |
download | openssl-96b7df60b3e54641c6046fea31c7a5cb535c2eeb.tar.xz openssl-96b7df60b3e54641c6046fea31c7a5cb535c2eeb.zip |
Minor updates
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/21135)
Diffstat (limited to 'ssl/quic/quic_stream_map.c')
-rw-r--r-- | ssl/quic/quic_stream_map.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ssl/quic/quic_stream_map.c b/ssl/quic/quic_stream_map.c index 11278e9cc3..1f8fff03be 100644 --- a/ssl/quic/quic_stream_map.c +++ b/ssl/quic/quic_stream_map.c @@ -495,7 +495,8 @@ int ossl_quic_stream_map_notify_reset_stream_acked(QUIC_STREAM_MAP *qsm, } } -/* Stream Receive Part State Management +/* + * Stream Receive Part State Management * ==================================== */ @@ -511,7 +512,7 @@ int ossl_quic_stream_map_notify_size_known_recv_part(QUIC_STREAM_MAP *qsm, return 0; case QUIC_RSTREAM_STATE_RECV: - qs->recv_state = QUIC_RSTREAM_STATE_SIZE_KNOWN; + qs->recv_state = QUIC_RSTREAM_STATE_SIZE_KNOWN; return 1; } } |