]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: quic: Indentation fix quic_rx_pkt_retrieve_conn()
authorFrédéric Lécaille <flecaille@haproxy.com>
Wed, 24 May 2023 07:06:06 +0000 (09:06 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 24 May 2023 14:30:11 +0000 (16:30 +0200)
Add missing spaces.

Must be backported to 2.7.

src/quic_conn.c

index 1048e569d51faea8df30c60b9987115a4103d70e..0e065ebbd07b1648893f52ba179e6d2fa224c1cf 100644 (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) {