Skip to content
Snippets Groups Projects
Commit 8be159a0 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Reverse the other of the userlist and nodelist modules

User list is more similar to logonlistl and nodelist is more similar
to 'who's online'.
parent cff13ac9
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -2611,8 +2611,8 @@ void sys_cfg(void) ...@@ -2611,8 +2611,8 @@ void sys_cfg(void)
sprintf(opt[i++],"%-16.16s%s","Scan Subs",cfg.scansubs_mod); sprintf(opt[i++],"%-16.16s%s","Scan Subs",cfg.scansubs_mod);
sprintf(opt[i++],"%-16.16s%s","List Msgs",cfg.listmsgs_mod); sprintf(opt[i++],"%-16.16s%s","List Msgs",cfg.listmsgs_mod);
sprintf(opt[i++],"%-16.16s%s","List Logons",cfg.logonlist_mod); sprintf(opt[i++],"%-16.16s%s","List Logons",cfg.logonlist_mod);
sprintf(opt[i++],"%-16.16s%s","List Nodes",cfg.nodelist_mod);
sprintf(opt[i++],"%-16.16s%s","List Users",cfg.userlist_mod); sprintf(opt[i++],"%-16.16s%s","List Users",cfg.userlist_mod);
sprintf(opt[i++],"%-16.16s%s","List Nodes",cfg.nodelist_mod);
sprintf(opt[i++],"%-16.16s%s","Who's Online",cfg.whosonline_mod); sprintf(opt[i++],"%-16.16s%s","Who's Online",cfg.whosonline_mod);
sprintf(opt[i++],"%-16.16s%s","Private Msg",cfg.privatemsg_mod); sprintf(opt[i++],"%-16.16s%s","Private Msg",cfg.privatemsg_mod);
sprintf(opt[i++],"%-16.16s%s","Temp Transfer",cfg.tempxfer_mod); sprintf(opt[i++],"%-16.16s%s","Temp Transfer",cfg.tempxfer_mod);
...@@ -2642,8 +2642,8 @@ void sys_cfg(void) ...@@ -2642,8 +2642,8 @@ void sys_cfg(void)
"`Scan Subs` Executed when a user scans one or more sub-boards for msgs\n" "`Scan Subs` Executed when a user scans one or more sub-boards for msgs\n"
"`List Msgs` Executed when a user lists msgs from the msg read prompt\n" "`List Msgs` Executed when a user lists msgs from the msg read prompt\n"
"`List Logons` Executed when a user lists logons ('-y' for yesterday)\n" "`List Logons` Executed when a user lists logons ('-y' for yesterday)\n"
"`List Nodes` Executed when a user lists all nodes\n"
"`List Users` Executed when a user lists the users of the system\n" "`List Users` Executed when a user lists the users of the system\n"
"`List Nodes` Executed when a user lists all nodes\n"
"`Who's Online` Executed when a user lists the nodes in-use (e.g. `^U`)\n" "`Who's Online` Executed when a user lists the nodes in-use (e.g. `^U`)\n"
"`Private Msg` Executed when a user sends a private node msg (e.g. `^P`)\n" "`Private Msg` Executed when a user sends a private node msg (e.g. `^P`)\n"
"\n" "\n"
...@@ -2726,13 +2726,13 @@ void sys_cfg(void) ...@@ -2726,13 +2726,13 @@ void sys_cfg(void)
,cfg.logonlist_mod,sizeof(cfg.logonlist_mod)-1,K_EDIT); ,cfg.logonlist_mod,sizeof(cfg.logonlist_mod)-1,K_EDIT);
break; break;
case 17: case 17:
uifc.input(WIN_MID|WIN_SAV,0,0,"List Nodes Module"
,cfg.nodelist_mod,sizeof(cfg.nodelist_mod)-1,K_EDIT);
break;
case 18:
uifc.input(WIN_MID|WIN_SAV,0,0,"List Users" uifc.input(WIN_MID|WIN_SAV,0,0,"List Users"
,cfg.userlist_mod,sizeof(cfg.userlist_mod)-1,K_EDIT); ,cfg.userlist_mod,sizeof(cfg.userlist_mod)-1,K_EDIT);
break; break;
case 18:
uifc.input(WIN_MID|WIN_SAV,0,0,"List Nodes Module"
,cfg.nodelist_mod,sizeof(cfg.nodelist_mod)-1,K_EDIT);
break;
case 19: case 19:
uifc.input(WIN_MID|WIN_SAV,0,0,"Who's Online Module" uifc.input(WIN_MID|WIN_SAV,0,0,"Who's Online Module"
,cfg.whosonline_mod,sizeof(cfg.whosonline_mod)-1,K_EDIT); ,cfg.whosonline_mod,sizeof(cfg.whosonline_mod)-1,K_EDIT);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment