BUG/MINOR: quic: Fixe a typo in qc_idle_timer_task()

The & operator was confused with | operator :-(
This commit is contained in:
Frédéric Lécaille 2022-05-20 20:50:59 +02:00
parent 287f32fd01
commit ad9895d133

View File

@ -4559,7 +4559,7 @@ static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int s
* a TLS alert was received from the TLS stack, this counter
* has already been decremented.
*/
if (qc_state < QUIC_HS_ST_COMPLETE && !(qc_flags|QUIC_FL_CONN_TLS_ALERT))
if (qc_state < QUIC_HS_ST_COMPLETE && !(qc_flags & QUIC_FL_CONN_TLS_ALERT))
HA_ATOMIC_DEC(&prx_counters->conn_opening);
return NULL;