From 7b293dc3e2e22361838ee2e506b191a1f98caa36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Mon, 22 Mar 2021 11:56:19 +0100 Subject: [PATCH] Linux: fix --drop-capabilities Do not return false (= argument not handled) when actually handled --- linux/Platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/Platform.c b/linux/Platform.c index 13c0ddb2..5013b660 100644 --- a/linux/Platform.c +++ b/linux/Platform.c @@ -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