Skip to content

Commit 165c2cf

Browse files
committed
Fix wolfSSL_get_peer_quic_transport_version
1 parent 1c8d593 commit 165c2cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/quic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ int wolfSSL_get_peer_quic_transport_version(const WOLFSSL* ssl)
431431
{
432432
return ssl->quic.transport_peer ?
433433
TLSX_KEY_QUIC_TP_PARAMS : (ssl->quic.transport_peer_draft ?
434-
TLSX_KEY_QUIC_TP_PARAMS : -1);
434+
TLSX_KEY_QUIC_TP_PARAMS_DRAFT : -1);
435435
}
436436

437437

0 commit comments

Comments
 (0)