From 516a2ab069d37a6cd35c4384250b9ba47c6af3ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20G=C3=BCnzler?= Date: Thu, 15 Dec 2022 22:14:04 +0100 Subject: [PATCH] common: actually parse -F using getopt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Günzler --- client/common/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/common/common.c b/client/common/common.c index 8eacfd3..7628246 100644 --- a/client/common/common.c +++ b/client/common/common.c @@ -322,7 +322,7 @@ do_getopt(struct client *client, int *argc, char **argv[]) for (optind = 0;;) { int32_t opt; - if ((opt = getopt_long(*argc, *argv, "hviwxcl:I:p:P:I:bfm:H:M:W:B:nsCTK", opts, NULL)) < 0) + if ((opt = getopt_long(*argc, *argv, "hviwxcl:I:p:P:I:bfF:m:H:M:W:B:nsCTK", opts, NULL)) < 0) break; switch (opt) {