diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-12-27 13:17:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-27 13:17:03 +0200 |
| commit | 1d63ddd4b950c0f2b922c7f3a0b059cf0b53d91f (patch) | |
| tree | 65e6d4cf9016430623d228d284e0ca55fc534e4a /isisd/isis_cli.c | |
| parent | 3f6c106e487e790489e31ba81f4725778d81307e (diff) | |
| parent | dcb03c44e7544ec0381c2706c7c5972dffb16adb (diff) | |
Merge pull request #17720 from jvoss/srv6_cli
isisd: fix srv6 exit statements
Diffstat (limited to 'isisd/isis_cli.c')
| -rw-r--r-- | isisd/isis_cli.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/isisd/isis_cli.c b/isisd/isis_cli.c index 93f7bbf753..652efee89a 100644 --- a/isisd/isis_cli.c +++ b/isisd/isis_cli.c @@ -2065,12 +2065,6 @@ void cli_show_isis_srv6_locator(struct vty *vty, const struct lyd_node *dnode, vty_out(vty, " locator %s\n", yang_dnode_get_string(dnode, NULL)); } -void cli_show_isis_srv6_locator_end(struct vty *vty, - const struct lyd_node *dnode) -{ - vty_out(vty, " exit\n"); -} - /* * XPath: /frr-isisd:isis/instance/segment-routing-srv6/enabled */ @@ -2118,6 +2112,11 @@ void cli_show_isis_srv6_enabled(struct vty *vty, const struct lyd_node *dnode, vty_out(vty, " segment-routing srv6\n"); } +void cli_show_isis_srv6_end(struct vty *vty, const struct lyd_node *dnode) +{ + vty_out(vty, " exit\n"); +} + /* * XPath: /frr-isisd:isis/instance/segment-routing-srv6/msd/node-msd */ @@ -2248,6 +2247,11 @@ void cli_show_isis_srv6_node_msd(struct vty *vty, const struct lyd_node *dnode, yang_dnode_get_uint8(dnode, "max-end-d")); } +void cli_show_isis_srv6_node_msd_end(struct vty *vty, const struct lyd_node *dnode) +{ + vty_out(vty, " exit\n"); +} + /* * XPath: /frr-isisd:isis/instance/segment-routing-srv6/interface */ |
