Don't restrict node --flag to windows

This fixes a regression introduced by e8aa679.
This commit is contained in:
Bastien Dejean 2016-04-14 16:56:14 +02:00
parent 73e402e49a
commit 789cb8a504

View file

@ -294,7 +294,7 @@ void cmd_node(char **args, int num, FILE *rsp)
fail(rsp, "node %s: Not enough arguments.\n", *(args - 1));
break;
}
if (trg.node == NULL || trg.node->client == NULL) {
if (trg.node == NULL) {
fail(rsp, "");
break;
}