mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
fix getopt() call for 'p' by adding the missing colon (:)
This commit is contained in:
parent
1306c809b8
commit
ae69bc45e5
2
main.c
2
main.c
|
|
@ -333,7 +333,7 @@ int main(int argc, char *argv[])
|
||||||
else if (!strstr(eptr,"NOCONFIG"))
|
else if (!strstr(eptr,"NOCONFIG"))
|
||||||
read_config(control);
|
read_config(control);
|
||||||
|
|
||||||
while ((c = getopt_long(argc, argv, "bcCdDefghHikKlL:nN:o:O:pPqrS:tTUm:vVw:z?123456789", long_options, &i)) != -1) {
|
while ((c = getopt_long(argc, argv, "bcCdDefghHikKlL:nN:o:O:p:PqrS:tTUm:vVw:z?123456789", long_options, &i)) != -1) {
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'b':
|
case 'b':
|
||||||
if (control->flags & FLAG_NOT_LZMA)
|
if (control->flags & FLAG_NOT_LZMA)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue