MINOR: quic: Fix handshake state debug strings

There was a collision between QUIC_HS_ST_CLIENT_HANDSHAKE_FAILED
and QUIC_HS_ST_CONFIRMED states.
This commit is contained in:
Frédéric Lécaille 2021-08-18 09:10:48 +02:00 committed by Amaury Denoyelle
parent 2e459a83d6
commit ee57444382

View File

@ -179,9 +179,9 @@ static inline char *quic_hdshk_state_str(const enum quic_handshake_state state)
case QUIC_HS_ST_SERVER_HANDSHAKE_FAILED:
return "SF";
case QUIC_HS_ST_COMPLETE:
return "CP";
return "HCP";
case QUIC_HS_ST_CONFIRMED:
return "CF";
return "HCF";
}
return NULL;