MINOR: quic: Typo fix for ACK_ECN frame

Wrong name displayed by TRACE().

Must be backported to 2.7.
This commit is contained in:
Frédéric Lécaille 2023-03-06 15:34:19 +01:00 committed by Amaury Denoyelle
parent b4c5471425
commit 904caac3e4

View File

@ -31,7 +31,7 @@ const char *quic_frame_type_string(enum quic_frame_type ft)
case QUIC_FT_ACK:
return "ACK";
case QUIC_FT_ACK_ECN:
return "ACK_ENC";
return "ACK_ECN";
case QUIC_FT_RESET_STREAM:
return "RESET_STREAM";
case QUIC_FT_STOP_SENDING: