* md5.{c,h}: (md5_loop) Is better off taking a void * and doing
cast to byte wise type internally, avoids needs for casts
in users.
+ * vty.c: (no_terminal_monitor_cmd) New ALIAS for
+ terminal_no_monitor, in the more normal negating format,
+ to be kind to my fingers.
+ (vty_init) install new ALIAS.
2006-01-16 Paul Jakma <paul.jakma@sun.com>
return CMD_SUCCESS;
}
+ALIAS (terminal_no_monitor,
+ no_terminal_monitor_cmd,
+ "no terminal monitor",
+ NO_STR
+ "Set terminal line parameters\n"
+ "Copy debug output to the current terminal line\n")
+
DEFUN (show_history,
show_history_cmd,
"show history",
install_element (CONFIG_NODE, &show_history_cmd);
install_element (ENABLE_NODE, &terminal_monitor_cmd);
install_element (ENABLE_NODE, &terminal_no_monitor_cmd);
+ install_element (ENABLE_NODE, &no_terminal_monitor_cmd);
install_element (ENABLE_NODE, &show_history_cmd);
install_default (VTY_NODE);