Merge pull request #6061 from volta-networks/fix_isis_show_metric

isisd: fix vty show isis metric
This commit is contained in:
Renato Westphal 2020-03-20 15:15:41 -03:00 committed by GitHub
commit dd0271b583
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1398,8 +1398,8 @@ void cli_show_ip_isis_metric(struct vty *vty, struct lyd_node *dnode,
if (strmatch(l1, l2))
vty_out(vty, " isis metric %s\n", l1);
else {
vty_out(vty, " isis metric %s level-1\n", l1);
vty_out(vty, " isis metric %s level-2\n", l2);
vty_out(vty, " isis metric level-1 %s\n", l1);
vty_out(vty, " isis metric level-2 %s\n", l2);
}
}