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.
This commit is contained in:
Aurelien DARRAGON 2025-03-17 11:32:14 +01:00
parent 3c1b00b127
commit 9c60fc9fe1

View File

@ -565,6 +565,7 @@ enum stats_domain_px_cap {
#define STATS_PX_CAP__F__ (STATS_PX_CAP_FE) #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___BS (STATS_PX_CAP_BE|STATS_PX_CAP_SRV)
#define STATS_PX_CAP____S (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 */ /* the context of a "show stat" command in progress on the CLI or the stats applet */
struct show_stat_ctx { struct show_stat_ctx {