diff options
author | Benoît Ganne <bganne@cisco.com> | 2020-02-04 16:45:09 +0100 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-08-12 15:59:46 +0000 |
commit | 9a91d62793a24dfd4f9830526c2e26f932395e70 (patch) | |
tree | 238e321c5fa7012ae1ee506c76928e9df7729641 | |
parent | caeb90e9ce5e095352228cf3d48ce56da4feedae (diff) |
fib: fix non-NULL terminated vectors in cli output
Type: fix
Change-Id: Idbb3f29b13a5c84a8585c4299e51fdfc35f7e1ad
Signed-off-by: Benoît Ganne <bganne@cisco.com>
(cherry picked from commit 84382ae45c2cf694ef7faf4a87d60c1546869301)
-rw-r--r-- | src/vnet/fib/fib_path.c | 2 | ||||
-rw-r--r-- | src/vnet/fib/fib_path_list.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/fib/fib_path.c b/src/vnet/fib/fib_path.c index 4af020ba302..4be82dcd0f3 100644 --- a/src/vnet/fib/fib_path.c +++ b/src/vnet/fib/fib_path.c @@ -2824,7 +2824,7 @@ show_fib_path_command (vlib_main_t * vm, FIB_PATH_FORMAT_FLAGS_NONE); s = format(s, "\n children:"); s = fib_node_children_format(path->fp_node.fn_children, s); - vlib_cli_output (vm, "%s", s); + vlib_cli_output (vm, "%v", s); vec_free(s); } else diff --git a/src/vnet/fib/fib_path_list.c b/src/vnet/fib/fib_path_list.c index 07d54f4d4d6..2ad7c30e50a 100644 --- a/src/vnet/fib/fib_path_list.c +++ b/src/vnet/fib/fib_path_list.c @@ -1460,7 +1460,7 @@ show_fib_path_list_command (vlib_main_t * vm, u8 *s = fib_path_list_format(pli, NULL); s = format(s, "children:"); s = fib_node_children_format(path_list->fpl_node.fn_children, s); - vlib_cli_output (vm, "%s", s); + vlib_cli_output (vm, "%v", s); vec_free(s); } else |