Skip to content
Snippets Groups Projects
Commit 94e0a261 authored by rswindell's avatar rswindell
Browse files

Turns off all user-specific node bits when node_thread ends (was in logout()).

parent 5e53ebf5
No related branches found
No related tags found
No related merge requests found
...@@ -2851,7 +2851,8 @@ void node_thread(void* arg) ...@@ -2851,7 +2851,8 @@ void node_thread(void* arg)
node.status=NODE_OFFLINE; node.status=NODE_OFFLINE;
else else
node.status=NODE_WFC; node.status=NODE_WFC;
node.misc&=~NODE_DOWN; node.misc&=~(NODE_DOWN|NODE_INTR|NODE_MSGW|NODE_NMSG
|NODE_UDAT|NODE_POFF|NODE_AOFF|NODE_EXT);
node.useron=0; node.useron=0;
sbbs->putnodedat(sbbs->cfg.node_num,&node); sbbs->putnodedat(sbbs->cfg.node_num,&node);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment