aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/vpp/stats/stats.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vpp/stats/stats.c b/src/vpp/stats/stats.c
index c78a8aef..ff52c4db 100644
--- a/src/vpp/stats/stats.c
+++ b/src/vpp/stats/stats.c
@@ -1495,7 +1495,7 @@ static void
}
rp = pool_elt_at_index (sm->stats_registrations, p[0]);
- if (!rp->stats_registrations & INTERFACE_COMBINED_COUNTERS) // Client but doesn't want this.
+ if (!(rp->stats_registrations & INTERFACE_COMBINED_COUNTERS)) // Client but doesn't want this.
{
clib_warning
("pid %d: already disabled for interface COMBINED stats...",
@@ -1576,7 +1576,7 @@ vl_api_want_ip4_fib_stats_t_handler (vl_api_want_ip4_fib_stats_t * mp)
}
rp = pool_elt_at_index (sm->stats_registrations, p[0]);
- if (!rp->stats_registrations & IP4_FIB_COUNTERS) // Client but doesn't want this.
+ if (!(rp->stats_registrations & IP4_FIB_COUNTERS)) // Client but doesn't want this.
{
clib_warning ("pid %d: already disabled for interface ip4 fib...",
mp->pid);
@@ -1656,7 +1656,7 @@ vl_api_want_ip6_fib_stats_t_handler (vl_api_want_ip6_fib_stats_t * mp)
}
rp = pool_elt_at_index (sm->stats_registrations, p[0]);
- if (!rp->stats_registrations & IP6_FIB_COUNTERS) // Client but doesn't want this.
+ if (!(rp->stats_registrations & IP6_FIB_COUNTERS)) // Client but doesn't want this.
{
clib_warning ("pid %d: already disabled for interface ip6 fib...",
mp->pid);