From 4635314cefd55aaa2a0146b6722df55e7efba4b8 Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Tue, 30 Mar 2021 15:09:53 +0200 Subject: Routing tables list iteration should use explicit node struct position --- nest/rt-table.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nest/rt-table.c') diff --git a/nest/rt-table.c b/nest/rt-table.c index 626c2fb8..7b81e141 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -1741,8 +1741,9 @@ void rt_dump_all(void) { rtable *t; + node *n; - WALK_LIST(t, routing_tables) + WALK_LIST2(t, n, routing_tables, n) rt_dump(t); } -- cgit v1.2.3