mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
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.
This commit is contained in:
parent
918bcb0e07
commit
698470b8f3
1 changed files with 1 additions and 1 deletions
|
@ -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[] = {
|
||||
|
|
Loading…
Reference in a new issue