diff options
author | Florin Coras <fcoras@cisco.com> | 2017-12-14 11:34:37 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-12-15 09:51:46 +0000 |
commit | 119dd3af4b067cbbe27f20f0508bd959291f0472 (patch) | |
tree | 019cfbbcab5e1277d07e17d6940195686475ca42 /src | |
parent | 23f0c4515f62b18ef6f1ff7cab537838f0f65457 (diff) |
fib: fix show fib path-list and path
Change-Id: I465282e513b6a0482e96dd02fc7e0e4ed3e3731a
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/fib/fib_path.c | 4 | ||||
-rw-r--r-- | src/vnet/fib/fib_path_list.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/vnet/fib/fib_path.c b/src/vnet/fib/fib_path.c index 8d738c2b727..f7fed26ac9a 100644 --- a/src/vnet/fib/fib_path.c +++ b/src/vnet/fib/fib_path.c @@ -2638,9 +2638,9 @@ show_fib_path_command (vlib_main_t * vm, else { vlib_cli_output (vm, "FIB Paths"); - pool_foreach(path, fib_path_pool, + pool_foreach_index (pi, fib_path_pool, ({ - vlib_cli_output (vm, "%U", format_fib_path, path); + vlib_cli_output (vm, "%U", format_fib_path, pi, 0); })); } diff --git a/src/vnet/fib/fib_path_list.c b/src/vnet/fib/fib_path_list.c index 5201b5a14e8..763f0921ab2 100644 --- a/src/vnet/fib/fib_path_list.c +++ b/src/vnet/fib/fib_path_list.c @@ -1375,9 +1375,9 @@ show_fib_path_list_command (vlib_main_t * vm, * show all */ vlib_cli_output (vm, "FIB Path Lists"); - pool_foreach(path_list, fib_path_list_pool, + pool_foreach_index (pli, fib_path_list_pool, ({ - vlib_cli_output (vm, "%U", format_fib_path_list, path_list); + vlib_cli_output (vm, "%U", format_fib_path_list, pli, 0); })); } return (NULL); |