From 9c60fc9fe147d27b298edd0b3efe6afc3754626f Mon Sep 17 00:00:00 2001 From: Aurelien DARRAGON Date: Mon, 17 Mar 2025 11:32:14 +0100 Subject: [PATCH] MINOR: stats: STATS_PX_CAP___B_ macro STATS_PX_CAP___B_ points to STATS_PX_CAP_BE, it is just an alias for consistency, like STATS_PX_CAP____S which points to STATS_PX_CAP_SRV. --- include/haproxy/stats-t.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/haproxy/stats-t.h b/include/haproxy/stats-t.h index f16bb3764..0b60796b6 100644 --- a/include/haproxy/stats-t.h +++ b/include/haproxy/stats-t.h @@ -565,6 +565,7 @@ enum stats_domain_px_cap { #define STATS_PX_CAP__F__ (STATS_PX_CAP_FE) #define STATS_PX_CAP___BS (STATS_PX_CAP_BE|STATS_PX_CAP_SRV) #define STATS_PX_CAP____S (STATS_PX_CAP_SRV) +#define STATS_PX_CAP___B_ (STATS_PX_CAP_BE) /* the context of a "show stat" command in progress on the CLI or the stats applet */ struct show_stat_ctx {