From 71533eaa32d5915d1c21943ff93dfca16c2f91ec Mon Sep 17 00:00:00 2001 From: Philippe Guibert Date: Wed, 23 Mar 2022 17:03:53 +0100 Subject: [PATCH] pathd: bad order of nai adjacencies for ipv6 The order of nai adjacencies ipv6 addresses was wrong. The src and the destination addresses were swapped. Change it. Signed-off-by: Philippe Guibert (cherry picked from commit a38d5b7af20b60a8eb0344e02f7875909b828b27) --- pathd/path_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pathd/path_cli.c b/pathd/path_cli.c index bfeea8c3db..4775aa36fb 100644 --- a/pathd/path_cli.c +++ b/pathd/path_cli.c @@ -527,7 +527,7 @@ DEFPY(srte_segment_list_segment, srte_segment_list_segment_cmd, adj_src_ipv4, adj_dst_ipv4, adj_src_ipv6, adj_dst_ipv6, adj_src_ipv4_str, adj_dst_ipv4_str, - adj_dst_ipv6_str, adj_src_ipv6_str); + adj_src_ipv6_str, adj_dst_ipv6_str); if (status != CMD_SUCCESS) return status; } else { -- 2.39.5