From: Amaury Denoyelle Date: Tue, 18 Jan 2022 15:48:17 +0000 (+0100) Subject: MINOR: quic: fix indentation in qc_send_ppkts X-Git-Tag: v2.6-dev1~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=74f2292557d4ea34fbfaba2490d414d1b01b8a4d;p=thirdparty%2Fhaproxy.git MINOR: quic: fix indentation in qc_send_ppkts Adjust wrong mixing of tabs/spaces. --- diff --git a/src/xprt_quic.c b/src/xprt_quic.c index a880598845..7247cd5971 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -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);