Skip to content
Snippets Groups Projects
Commit 851352b6 authored by rswindell's avatar rswindell
Browse files

Fix off-by-one bug in previous commit.

parent eb3d59dc
No related branches found
No related tags found
No related merge requests found
......@@ -292,7 +292,7 @@ void printnodedat(int number, node_t node)
case NODE_QUIET:
case NODE_INUSE:
if(node.misc&NODE_EXT) {
printf("%s", extended_status(number,tmp));
printf("%s", extended_status(number - 1, tmp));
break;
}
printf("User #%d",node.useron);
......
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