summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_trace.c
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-06-06 16:25:10 +0100
committerPauli <pauli@openssl.org>2023-07-17 08:17:57 +1000
commit6c1d0e28650164d782909abfea92ba834d0babd5 (patch)
tree9cd43d390aca59a89114111a1568ad2c08699843 /ssl/quic/quic_trace.c
parent0911cb4a072f55b5f982635faeaa7a992a14181f (diff)
QUIC CONFORMANCE: Enforce minimal frame type encoding
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_trace.c')
-rw-r--r--ssl/quic/quic_trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_trace.c b/ssl/quic/quic_trace.c
index ed25e05ee3..5a57e675f9 100644
--- a/ssl/quic/quic_trace.c
+++ b/ssl/quic/quic_trace.c
@@ -392,7 +392,7 @@ static int trace_frame_data(BIO *bio, PACKET *pkt)
{
uint64_t frame_type;
- if (!ossl_quic_wire_peek_frame_header(pkt, &frame_type))
+ if (!ossl_quic_wire_peek_frame_header(pkt, &frame_type, NULL))
return 0;
switch (frame_type) {