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 | 116f0dd90507c71a557214877c9c4df5a6a77e12 (diff) | |
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 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 { |
