diff options
| author | Christian Hopps <chopps@labn.net> | 2024-01-26 17:40:55 -0500 | 
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2024-01-26 17:40:55 -0500 | 
| commit | e6eec072abd7088c09a23d0328ac9bc9fd00ad7e (patch) | |
| tree | 99db60967b6c49482759f6a13548bc50127144f1 /vtysh/vtysh.c | |
| parent | 1254d5fc4e7d6b3717177fd353974a55b1777d4a (diff) | |
ripngd: convert ripngd to mgmtd
- a couple small fixes for ripd conversion as well.
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'vtysh/vtysh.c')
| -rw-r--r-- | vtysh/vtysh.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 6d2600cd96..b1a53965cd 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -2015,7 +2015,7 @@ DEFUNSH(VTYSH_MGMTD, router_rip, router_rip_cmd, "router rip [vrf NAME]",  #endif /* HAVE_RIPD */  #ifdef HAVE_RIPNGD -DEFUNSH(VTYSH_RIPNGD, router_ripng, router_ripng_cmd, "router ripng [vrf NAME]", +DEFUNSH(VTYSH_MGMTD, router_ripng, router_ripng_cmd, "router ripng [vrf NAME]",  	ROUTER_STR "RIPng\n" VRF_CMD_HELP_STR)  {  	vty->node = RIPNG_NODE; @@ -2559,13 +2559,13 @@ DEFUNSH(VTYSH_MGMTD, vtysh_quit_ripd, vtysh_quit_ripd_cmd, "quit",  #endif /* HAVE_RIPD */  #ifdef HAVE_RIPNGD -DEFUNSH(VTYSH_RIPNGD, vtysh_exit_ripngd, vtysh_exit_ripngd_cmd, "exit", +DEFUNSH(VTYSH_MGMTD, vtysh_exit_ripngd, vtysh_exit_ripngd_cmd, "exit",  	"Exit current mode and down to previous mode\n")  {  	return vtysh_exit(vty);  } -DEFUNSH(VTYSH_RIPNGD, vtysh_quit_ripngd, vtysh_quit_ripngd_cmd, "quit", +DEFUNSH(VTYSH_MGMTD, vtysh_quit_ripngd, vtysh_quit_ripngd_cmd, "quit",  	"Exit current mode and down to previous mode\n")  {  	return vtysh_exit_ripngd(self, vty, argc, argv);  | 
