CLEANUP: quic: Indentation fix quic_rx_pkt_retrieve_conn()

Add missing spaces.

Must be backported to 2.7.
This commit is contained in:
Frdric Lcaille 2023-05-24 09:06:06 +02:00 committed by Willy Tarreau
parent 5fa633e22f
commit ab3aa0ff22
1 changed files with 1 additions and 1 deletions

View File

@ -6832,7 +6832,7 @@ static struct quic_conn *quic_rx_pkt_retrieve_conn(struct quic_rx_packet *pkt,
qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr, new_tid);
/* If connection already created or rebinded on another thread. */
if (!qc && *new_tid != -1 && tid != *new_tid)
if (!qc && *new_tid != -1 && tid != *new_tid)
goto out;
if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {