From d0c0a584845988c5e658519c81a21d1465c668ad Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on ChromeOS)" <rob@synchro.net> Date: Mon, 20 Feb 2023 20:31:47 -0800 Subject: [PATCH] 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'. --- src/sbbs3/scfg/scfgsys.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sbbs3/scfg/scfgsys.c b/src/sbbs3/scfg/scfgsys.c index 1539a710b9..0e34343ebc 100644 --- a/src/sbbs3/scfg/scfgsys.c +++ b/src/sbbs3/scfg/scfgsys.c @@ -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","List Msgs",cfg.listmsgs_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 Nodes",cfg.nodelist_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","Temp Transfer",cfg.tempxfer_mod); @@ -2642,8 +2642,8 @@ void sys_cfg(void) "`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 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 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" "`Private Msg` Executed when a user sends a private node msg (e.g. `^P`)\n" "\n" @@ -2726,13 +2726,13 @@ void sys_cfg(void) ,cfg.logonlist_mod,sizeof(cfg.logonlist_mod)-1,K_EDIT); break; 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" ,cfg.userlist_mod,sizeof(cfg.userlist_mod)-1,K_EDIT); 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: uifc.input(WIN_MID|WIN_SAV,0,0,"Who's Online Module" ,cfg.whosonline_mod,sizeof(cfg.whosonline_mod)-1,K_EDIT); -- GitLab