diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2022-03-23 17:03:53 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2022-03-23 17:04:55 +0100 |
commit | a38d5b7af20b60a8eb0344e02f7875909b828b27 (patch) | |
tree | f235d1e0397ab8fa939cb983672612ae67e8fe59 /pathd | |
parent | Merge pull request #10726 from chiragshah6/fdev2 (diff) | |
download | frr-a38d5b7af20b60a8eb0344e02f7875909b828b27.tar.xz frr-a38d5b7af20b60a8eb0344e02f7875909b828b27.zip |
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 <philippe.guibert@6wind.com>
Diffstat (limited to 'pathd')
-rw-r--r-- | pathd/path_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathd/path_cli.c b/pathd/path_cli.c index bfeea8c3d..4775aa36f 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 { |