]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
fix missing elem. sum in stats_channel
authorVojtech Vilimek <vojtech.vilimek@nic.cz>
Wed, 20 Jul 2022 13:01:41 +0000 (15:01 +0200)
committerVojtech Vilimek <vojtech.vilimek@nic.cz>
Wed, 20 Jul 2022 13:01:41 +0000 (15:01 +0200)
proto/stats/stats.h

index 12a12c29f3845f46425e580244672aa052e69d77..51802341cceed27c28282e8aeb80468e94cfe395 100644 (file)
@@ -27,6 +27,7 @@ struct stats_channel {
   pool *pool;
   u8 max_generation;
   u32 *counters;
+  u32 sum;
 };
 
 struct stats_channel_config {
@@ -34,4 +35,6 @@ struct stats_channel_config {
   u8 max_generation;
 };
 
+
+
 #endif