mirror of https://git.tukaani.org/xz.git
Allow extra commas in filter-specific options on xz command line.
This may slightly ease writing scripts that construct filter-specific option strings dynamically.
This commit is contained in:
parent
98f3cac1ad
commit
a35755c5de
|
@ -69,6 +69,13 @@ parse_options(const char *str, const option_map *opts,
|
|||
char *name = s;
|
||||
|
||||
while (true) {
|
||||
if (*name == ',') {
|
||||
if (*++name == '\0')
|
||||
break;
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
char *split = strchr(name, ',');
|
||||
if (split != NULL)
|
||||
*split = '\0';
|
||||
|
|
Loading…
Reference in New Issue