diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-03-08 08:11:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-08 08:11:14 -0500 |
| commit | 0d31f63dba95658fc8a553c450cecf78775b8423 (patch) | |
| tree | 54917504a4c783ccc1e43ff56f4ebcce8acffc15 /ripngd/ripng_cli.c | |
| parent | 10486960b464cfef9d8002d6e5a204de0d1ab995 (diff) | |
| parent | 1db1fbf7a65ff6b6b7c33d365d22020dbf8f8000 (diff) | |
Merge pull request #15497 from idryzhov/show-run-fixes
a couple of fixes for "show running-config"
Diffstat (limited to 'ripngd/ripng_cli.c')
| -rw-r--r-- | ripngd/ripng_cli.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ripngd/ripng_cli.c b/ripngd/ripng_cli.c index a4a0f5a2cb..ed460a239e 100644 --- a/ripngd/ripng_cli.c +++ b/ripngd/ripng_cli.c @@ -83,6 +83,11 @@ void cli_show_router_ripng(struct vty *vty, const struct lyd_node *dnode, vty_out(vty, "\n"); } +void cli_show_end_router_ripng(struct vty *vty, const struct lyd_node *dnode) +{ + vty_out(vty, "exit\n"); +} + /* * XPath: /frr-ripngd:ripngd/instance/allow-ecmp */ @@ -701,6 +706,7 @@ const struct frr_yang_module_info frr_ripngd_cli_info = { { .xpath = "/frr-ripngd:ripngd/instance", .cbs.cli_show = cli_show_router_ripng, + .cbs.cli_show_end = cli_show_end_router_ripng, }, { .xpath = "/frr-ripngd:ripngd/instance/allow-ecmp", |
