diff options
author | Romain Francoise <rfrancoise@debian.org> | 2010-09-12 10:56:36 +0200 |
---|---|---|
committer | Przemyslaw Pawelczyk <przemoc@gmail.com> | 2012-02-10 00:39:19 +0100 |
commit | f2024c74cbb81e6f42cb878c803265e429711ddf (patch) | |
tree | 75c6a9ecb3ec3b78b1f0f9529e9a917ece2de98c /metastore.c | |
parent | bee0b154abad8ed59043c6b2d271590785f24117 (diff) |
Fix getopt parsing of -f.
Diffstat (limited to 'metastore.c')
-rw-r--r-- | metastore.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |