From: Aurelien DARRAGON Date: Mon, 17 Mar 2025 10:32:14 +0000 (+0100) Subject: MINOR: stats: STATS_PX_CAP___B_ macro X-Git-Tag: v3.2-dev8~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c60fc9fe147d27b298edd0b3efe6afc3754626f;p=thirdparty%2Fhaproxy.git 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. --- 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 {