diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-28 21:37:48 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-11-28 21:54:24 +0200 |
commit | cedeeca2ea6ada5b0411b2ae10d7a859e837f203 (patch) | |
tree | 18538866823d617121601a8ffd45e7667e3c4897 /src/liblzma/common/Makefile.inc | |
parent | liblzma: Make lzma_validate_chain() available outside filter_common.c. (diff) | |
download | xz-cedeeca2ea6ada5b0411b2ae10d7a859e837f203.tar.xz |
liblzma: Add lzma_str_to_filters, _from_filters, and _list_filters.
lzma_str_to_filters() uses static error messages which makes
them not very precise. It tells the position in the string
where an error occurred though which helps quite a bit if
applications take advantage of it. Dynamic error messages can
be added later with a new flag if it seems important enough.
Diffstat (limited to 'src/liblzma/common/Makefile.inc')
-rw-r--r-- | src/liblzma/common/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liblzma/common/Makefile.inc b/src/liblzma/common/Makefile.inc index 44ab32f3..f0276a20 100644 --- a/src/liblzma/common/Makefile.inc +++ b/src/liblzma/common/Makefile.inc @@ -19,6 +19,7 @@ liblzma_la_SOURCES += \ common/index.h \ common/stream_flags_common.c \ common/stream_flags_common.h \ + common/string_conversion.c \ common/vli_size.c if COND_THREADS |