summaryrefslogtreecommitdiffstats
path: root/pathd
diff options
context:
space:
mode:
authorPhilippe Guibert <philippe.guibert@6wind.com>2022-03-23 17:03:53 +0100
committerPhilippe Guibert <philippe.guibert@6wind.com>2022-03-23 17:04:55 +0100
commita38d5b7af20b60a8eb0344e02f7875909b828b27 (patch)
treef235d1e0397ab8fa939cb983672612ae67e8fe59 /pathd
parentMerge pull request #10726 from chiragshah6/fdev2 (diff)
downloadfrr-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.c2
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 {