diff options
-rw-r--r-- | lib/agg_table.h | 2 | ||||
-rw-r--r-- | lib/table.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lib/agg_table.h b/lib/agg_table.h index 65d4137bc..235f0d37a 100644 --- a/lib/agg_table.h +++ b/lib/agg_table.h @@ -37,6 +37,8 @@ struct agg_node { */ ROUTE_NODE_FIELDS + /* Aggregation. */ + void *aggregate; }; static inline struct route_node *agg_node_to_rnode(struct agg_node *node) diff --git a/lib/table.h b/lib/table.h index 8304abe59..711ace111 100644 --- a/lib/table.h +++ b/lib/table.h @@ -126,9 +126,6 @@ struct route_table { \ /* Each node of route. */ \ void *info; \ - \ - /* Aggregation. */ \ - void *aggregate; /* Each routing entry. */ |