Fix missing getopt flags

Flags 'f' and 's' were added.
This commit is contained in:
James Reed 2020-09-16 14:24:38 -06:00
parent 46a9a7b970
commit bcc7f62657
No known key found for this signature in database
GPG Key ID: 0BE2BD33C5E8125E
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{