From f2024c74cbb81e6f42cb878c803265e429711ddf Mon Sep 17 00:00:00 2001 From: Romain Francoise Date: Sun, 12 Sep 2010 10:56:36 +0200 Subject: Fix getopt parsing of -f. --- metastore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'metastore.c') diff --git a/metastore.c b/metastore.c index 97dff2b..8aad770 100644 --- a/metastore.c +++ b/metastore.c @@ -376,7 +376,7 @@ main(int argc, char **argv, char **envp) i = 0; while (1) { int option_index = 0; - c = getopt_long(argc, argv, "csahvqmef", + c = getopt_long(argc, argv, "csahvqmef:", long_options, &option_index); if (c == -1) break; -- cgit v1.2.1