Skip to content
Snippets Groups Projects
Commit 3c14a4fe authored by rswindell's avatar rswindell
Browse files

Changed "Waiting for call" to "Waiting for connection".

parent 209e729f
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* * * *
* Copyright 2007 Rob Swindell - http://www.synchro.net/copyright.html * * Copyright 2009 Rob Swindell - http://www.synchro.net/copyright.html *
* * * *
* This program is free software; you can redistribute it and/or * * This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License * * modify it under the terms of the GNU General Public License *
...@@ -251,7 +251,7 @@ void printnodedat(int number, node_t node) ...@@ -251,7 +251,7 @@ void printnodedat(int number, node_t node)
printf("Node %2d: ",number); printf("Node %2d: ",number);
switch(node.status) { switch(node.status) {
case NODE_WFC: case NODE_WFC:
printf("Waiting for call"); printf("Waiting for connection");
break; break;
case NODE_OFFLINE: case NODE_OFFLINE:
printf("Offline"); printf("Offline");
......
...@@ -841,7 +841,7 @@ char* DLLCALL nodestatus(scfg_t* cfg, node_t* node, char* buf, size_t buflen) ...@@ -841,7 +841,7 @@ char* DLLCALL nodestatus(scfg_t* cfg, node_t* node, char* buf, size_t buflen)
switch(node->status) { switch(node->status) {
case NODE_WFC: case NODE_WFC:
strcpy(str,"Waiting for call"); strcpy(str,"Waiting for connection");
break; break;
case NODE_OFFLINE: case NODE_OFFLINE:
strcpy(str,"Offline"); strcpy(str,"Offline");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment