From: Philippe Guibert Date: Wed, 23 Mar 2022 16:03:53 +0000 (+0100) Subject: pathd: bad order of nai adjacencies for ipv6 X-Git-Tag: pim6-testing-20220430~167^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=a38d5b7af20b60a8eb0344e02f7875909b828b27;p=mirror%2Ffrr.git 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 --- 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 {