Linux: fix --drop-capabilities

Do not return false (= argument not handled) when actually handled
This commit is contained in:
Christian Göttsche 2021-03-22 11:56:19 +01:00
parent 6fd5b05151
commit 7b293dc3e2
1 changed files with 1 additions and 1 deletions

View File

@ -885,7 +885,7 @@ bool Platform_getLongOption(int opt, int argc, char** argv) {
fprintf(stderr, "Error: invalid capabilities mode \"%s\".\n", mode);
exit(1);
}
break;
return true;
}
#endif