mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-11-26 21:31:01 +01:00
BUG/MINOR: quic: Fixe a typo in qc_idle_timer_task()
The & operator was confused with | operator :-(
This commit is contained in:
parent
287f32fd01
commit
ad9895d133
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user