mirror of
https://git.tukaani.org/xz.git
synced 2025-02-20 07:28:20 +00:00
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…
x
Reference in New Issue
Block a user