Retained the prior SET CONSOLE DEBUG={stdout|log} behavior which deprecated and replaced by SET DEBUG={stdout|log}. Reported by Rob Jarratt
This commit is contained in:
parent
d12a445007
commit
375a02181e
2 changed files with 2 additions and 6 deletions
4
scp.c
4
scp.c
|
@ -657,10 +657,6 @@ static CTAB cmd_table[] = {
|
|||
"set console LOG=log_file enable console logging to the\n"
|
||||
" specified destination {STDOUT,DEBUG or filename)\n"
|
||||
"set console NOLOG disable console logging\n"
|
||||
"set console DEBUG=dbg_file\n"
|
||||
" enable console debugging to the\n"
|
||||
" specified destination {LOG,STDOUT or filename)\n"
|
||||
"set console NODEBUG disable console debugging\n"
|
||||
"set default <dir> set the current directory\n"
|
||||
"set log log_file specify the log destination\n"
|
||||
" (STDOUT,DEBUG or filename)\n"
|
||||
|
|
|
@ -214,8 +214,8 @@ static CTAB set_con_tab[] = {
|
|||
{ "NOSERIAL", &sim_set_noserial, 0 },
|
||||
{ "LOG", &sim_set_logon, 0 },
|
||||
{ "NOLOG", &sim_set_logoff, 0 },
|
||||
{ "DEBUG", &sim_set_cons_debug, 1 },
|
||||
{ "NODEBUG", &sim_set_cons_debug, 0 },
|
||||
{ "DEBUG", &sim_set_debon, 0 },
|
||||
{ "NODEBUG", &sim_set_deboff, 0 },
|
||||
{ NULL, NULL, 0 }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue