mirror of https://git.tukaani.org/xz.git
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
|
@ -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[] = {
|
static const struct option long_opts[] = {
|
||||||
|
|
Loading…
Reference in New Issue