From: Frédéric Lécaille Date: Wed, 24 May 2023 07:06:06 +0000 (+0200) Subject: CLEANUP: quic: Indentation fix quic_rx_pkt_retrieve_conn() X-Git-Tag: v2.8-dev13~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab3aa0ff22e44dfe174d72cd394c2baa8ca507c8;p=thirdparty%2Fhaproxy.git CLEANUP: quic: Indentation fix quic_rx_pkt_retrieve_conn() Add missing spaces. Must be backported to 2.7. --- diff --git a/src/quic_conn.c b/src/quic_conn.c index 1048e569d5..0e065ebbd0 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) {