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

Change NODE_LOGON status text to "At login prompt" for consistency

parent 12155a2b
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
/* nodedefs.js */
/* Synchronet node.dab file constants definitions - (mostly bit-fields) */
/* $Id: nodedefs.js,v 1.13 2020/08/01 22:06:51 rswindell Exp $ */
/* Synchronet node.dab file constants definitions - (mostly bit-flags) */
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
......@@ -17,21 +13,9 @@
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* Anonymous FTP access to the most recent released source is available at *
* ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net *
* *
* Anonymous CVS access to the development source and modification history *
* is available at cvs.synchro.net:/cvsroot/sbbs, example: *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs login *
* (just hit return, no password is necessary) *
* cvs -d :pserver:anonymous@cvs.synchro.net:/cvsroot/sbbs checkout src *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* You are encouraged to submit any modifications (preferably in Unix diff *
* format) via e-mail to mods@synchro.net *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
......@@ -39,7 +23,7 @@
/* Legal values for Node.status */
/********************************************/
var NODE_WFC =0; /* Waiting for Caller/Connection */
var NODE_LOGON =1; /* at logon prompt */
var NODE_LOGON =1; /* at login prompt */
var NODE_NEWUSER =2; /* New user applying */
var NODE_INUSE =3; /* In Use */
var NODE_QUIET =4; /* In Use - quiet mode */
......@@ -55,7 +39,7 @@ var NODE_LAST_STATUS =11;/* Must be last (anyone using this?) */
/********************************************/
var NodeStatus =[ /* Node.status value descriptions */
"Waiting for connection" /********************************************/
,"At logon prompt"
,"At login prompt"
,"New user"
,"In-use"
,"Waiting for connection"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment