commit | 850695ab1f7de5bcd04f09ce3842493a0aa6dce6 | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Fri Feb 25 17:29:10 2022 +0100 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Tue Mar 01 10:52:31 2022 +0100 |
tree | e6fc5efda15a19a50c71df94f637075936302f75 | |
parent | cc8348fbc14cbf9c696fc448fdc681e48ce1f751 [diff] [blame] |
CLEANUP: adjust indentation in bidir STREAM handling function Fix indentation in qc_handle_bidi_strm_frm in if condition.
diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 6f92849..084afae 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c
@@ -2110,9 +2110,8 @@ if (strm_frm->offset.key == strm->rx.offset) { int ret; - if (!qc_get_buf(strm, &strm->rx.buf)) { - goto store_frm; - } + if (!qc_get_buf(strm, &strm->rx.buf)) + goto store_frm; ret = qc_strm_cpy(&strm->rx.buf, strm_frm); total += ret;