Skip to content

Commit b36df34

Browse files
authored
Merge pull request #9868 from embhorn/f295
Fix wolfSSL_get_peer_quic_transport_version
2 parents 22f40a1 + 165c2cf commit b36df34

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)