1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02: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:
Lasse Collin 2009-07-14 21:10:36 +03:00
parent 98f3cac1ad
commit a35755c5de

View file

@ -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';