diff options
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/ChangeLog | 4 | ||||
-rw-r--r-- | vtysh/vtysh.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index 8e2875bf..8e55786f 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,7 @@ +2004-05-10 Hasso Tepper <hasso@estpak.ee> + + * vtysh.c: Workaround for most hated vtysh bug - Bugzilla #58. + 2004-04-06 Hasso Tepper <hasso@estpak.ee> * vtysh_main.c: Don't save command to history if last command already diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index c92c6c46..9729d2ed 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1040,6 +1040,8 @@ vtysh_exit (struct vty *vty) case RMAP_NODE: case VTY_NODE: case KEYCHAIN_NODE: + vtysh_execute("end"); + vtysh_execute("configure terminal"); vty->node = CONFIG_NODE; break; case BGP_VPNV4_NODE: |