commit | 4639689d89db2d18c4afbbe68e688a2b26b14b57 | [log] [tgz] |
---|---|---|
author | William Lallemand <wlallemand@haproxy.org> | Thu Nov 10 16:45:24 2022 +0100 |
committer | William Lallemand <wlallemand@haproxy.org> | Thu Nov 10 16:56:21 2022 +0100 |
tree | 70ba6d760f68b0a82927e5add89af180b1253013 | |
parent | 30fc6da148707055fcb6d1670217da6904364d1b [diff] |
BUG/MINOR: ssl: bind_conf is uncorrectly accessed when using QUIC Since commit 9b2598 ("BUG/MEDIUM: ssl: Verify error codes can exceed 63"), the ca_ignerr_bitfield and crt_ignerr_bietfield are incorrecly accessed from __objt_listener(conn->target)->bind_conf which is not avaiable from QUIC. The bind_conf variable was mistakenly replaced. This patch fixes the issue by using again the bind_conf variable. Must be backported where 9b2598 was backported.