From bcc7f62657b7bd9fd0455c5ae125af993a18f449 Mon Sep 17 00:00:00 2001 From: James Reed Date: Wed, 16 Sep 2020 14:24:38 -0600 Subject: [PATCH] Fix missing getopt flags Flags 'f' and 's' were added. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index 98d7b53b0..0300f657d 100644 --- a/options.c +++ b/options.c @@ -423,7 +423,7 @@ options_check_args(int argc, char **argv, int *init_flags, string_array_t *paths char *confpath = NULL; int opt; - while((opt = getopt_long(argc, argv, "vhkc:arml:", + while((opt = getopt_long(argc, argv, "vhfkc:armsl:", long_options, NULL)) != -1) { switch(opt) {