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

Report a different status for NODE_QUIT than NODE_INUSE

Could be helpful for debugging node status issues at some point
parent 8888c0ff
No related branches found
No related tags found
No related merge requests found
......@@ -1431,9 +1431,9 @@ char* node_vstatus(scfg_t* cfg, node_t* node, char* str, size_t size)
case NODE_NEWUSER:
return cfg->text != NULL ? cfg->text[NodeStatusNewUser] : "New user applying for access";
case NODE_QUIET:
return "In use (quietly)";
case NODE_INUSE:
return "In use";
break;
default:
snprintf(str, size, "Unknown status %u", node->status);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment