mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-05 13:07:24 +00:00
isisd: fix running-config for fast-reroute
YANG leaf means "enable" while CLI command is "disable". So we should use "no" when the leaf is "true", not "false". Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
This commit is contained in:
parent
22108570e3
commit
32931e1af8
@ -1853,7 +1853,7 @@ void cli_show_isis_frr_lfa_load_sharing(struct vty *vty,
|
||||
const struct lyd_node *dnode,
|
||||
bool show_defaults)
|
||||
{
|
||||
if (!yang_dnode_get_bool(dnode, NULL))
|
||||
if (yang_dnode_get_bool(dnode, NULL))
|
||||
vty_out(vty, " no");
|
||||
|
||||
vty_out(vty, " fast-reroute load-sharing disable %s\n",
|
||||
|
Loading…
Reference in New Issue
Block a user