From: Christopher Faulet Date: Mon, 8 Apr 2024 17:14:46 +0000 (+0200) Subject: BUG/MINOR: http-ana: Fix TX_L7_RETRY and TX_D_L7_RETRY values X-Git-Tag: v3.0-dev8~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fa6eb2eb9fa3300d564faae7d1a6d4e7ad49389;p=thirdparty%2Fhaproxy.git BUG/MINOR: http-ana: Fix TX_L7_RETRY and TX_D_L7_RETRY values These values are obviously wrong. There is an extra zero at the end for both defines. By chance, it is harmless. But it is better to fix it. This patch should be backported as far as 2.6. --- diff --git a/include/haproxy/http_ana-t.h b/include/haproxy/http_ana-t.h index 5b7342f4d5..f43aa32589 100644 --- a/include/haproxy/http_ana-t.h +++ b/include/haproxy/http_ana-t.h @@ -73,8 +73,8 @@ /* used only for keep-alive purposes, to indicate we're on a second transaction */ #define TX_NOT_FIRST 0x00040000 /* the transaction is not the first one */ -#define TX_L7_RETRY 0x000800000 /* The transaction may attempt L7 retries */ -#define TX_D_L7_RETRY 0x001000000 /* Disable L7 retries on this transaction, even if configured to do it */ +#define TX_L7_RETRY 0x00080000 /* The transaction may attempt L7 retries */ +#define TX_D_L7_RETRY 0x00100000 /* Disable L7 retries on this transaction, even if configured to do it */ /* This function is used to report flags in debugging tools. Please reflect * below any single-bit flag addition above in the same order via the