aboutsummaryrefslogtreecommitdiff
path: root/src/lzma/args.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2007-12-13 20:14:37 +0200
committerLasse Collin <lasse.collin@tukaani.org>2007-12-13 20:14:37 +0200
commit698470b8f33fc0e5f27dafa93b39b6dd5dde5a66 (patch)
tree30c37ec0ced663c1d8166efd86c0935f8b943f5f /src/lzma/args.c
parentRemoved uncompressed size tracking from Delta encoder too. (diff)
downloadxz-698470b8f33fc0e5f27dafa93b39b6dd5dde5a66.tar.xz
Fixed a few short options that take an argument.
short_opts[] was missing colons to indicate required argument. Thanks to Fabio Pedretti for the bug report.
Diffstat (limited to '')
-rw-r--r--src/lzma/args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lzma/args.c b/src/lzma/args.c
index d6163ae7..24fc0939 100644
--- a/src/lzma/args.c
+++ b/src/lzma/args.c
@@ -68,7 +68,7 @@ enum {
};
-static const char short_opts[] = "cC:dfFhlLkqrStT:vVz123456789";
+static const char short_opts[] = "cC:dfF:hlLkM:qrS:tT:vVz123456789";
static const struct option long_opts[] = {