From 698470b8f33fc0e5f27dafa93b39b6dd5dde5a66 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 13 Dec 2007 20:14:37 +0200 Subject: [PATCH] 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. --- src/lzma/args.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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[] = {