]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: fix indentation in qc_send_ppkts
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 18 Jan 2022 15:48:17 +0000 (16:48 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Mon, 24 Jan 2022 09:30:49 +0000 (10:30 +0100)
Adjust wrong mixing of tabs/spaces.

src/xprt_quic.c

index a880598845473f714b554127cc21c293ffaa461b..7247cd5971bc135a350ce42ea3c9464888d22b5f 100644 (file)
@@ -2752,11 +2752,11 @@ int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
                TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc);
                for (pkt = first_pkt; pkt; pkt = pkt->next)
                        quic_tx_packet_refinc(pkt);
-           if (ctx->xprt->snd_buf(qc->conn, qc->conn->xprt_ctx,
-                                  &tmpbuf, tmpbuf.data, 0) <= 0) {
+               if (ctx->xprt->snd_buf(qc->conn, qc->conn->xprt_ctx,
+                                      &tmpbuf, tmpbuf.data, 0) <= 0) {
                        for (pkt = first_pkt; pkt; pkt = pkt->next)
                                quic_tx_packet_refdec(pkt);
-                   break;
+                       break;
                }
 
                cb_del(cbuf, dglen + headlen);