From: Olivier Houchard Date: Wed, 30 Apr 2025 16:22:46 +0000 (+0200) Subject: BUILD/MEDIUM: quic: Make sure we build with recent changes X-Git-Tag: v3.2-dev13~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=81e4083efb18707e47299cfeb9524b240cae0e74;p=thirdparty%2Fhaproxy.git BUILD/MEDIUM: quic: Make sure we build with recent changes TASK_IN_LIST has been changed to TASK_QUEUED, but one was missed in quic_conn.c, so fix that. --- diff --git a/src/quic_conn.c b/src/quic_conn.c index 51ace545f..882158c76 100644 --- a/src/quic_conn.c +++ b/src/quic_conn.c @@ -1865,7 +1865,7 @@ int qc_bind_tid_prep(struct quic_conn *qc, uint new_tid) } /* Reinit IO tasklet. */ - if (qc->wait_event.tasklet->state & TASK_IN_LIST) + if (qc->wait_event.tasklet->state & TASK_QUEUED) qc->flags |= QUIC_FL_CONN_IO_TO_REQUEUE; tasklet_kill(qc->wait_event.tasklet); /* In most cases quic_conn_app_io_cb is used but for 0-RTT quic_conn_io_cb can be still activated. */