From ab3aa0ff22e44dfe174d72cd394c2baa8ca507c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Wed, 24 May 2023 09:06:06 +0200 Subject: [PATCH] CLEANUP: quic: Indentation fix quic_rx_pkt_retrieve_conn() Add missing spaces. Must be backported to 2.7. --- src/quic_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_conn.c b/src/quic_conn.c index 1048e569d..0e065ebbd 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -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) {