diff options
author | Denis Vlasenko | 2007-06-08 13:05:39 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-08 13:05:39 +0000 |
commit | c14d39e83a7f55ab9b92e98673a281fd6565c32d (patch) | |
tree | f1cfe7f071b228cf7f1a732046cabf18fa9421b8 /archival/libunarchive/decompress_unlzma.c | |
parent | def8260219797b0f9f734915f4918f34e85e7049 (diff) | |
download | busybox-c14d39e83a7f55ab9b92e98673a281fd6565c32d.zip busybox-c14d39e83a7f55ab9b92e98673a281fd6565c32d.tar.gz |
rmp: add optional support for bz2 data. +50 bytes of code
Diffstat (limited to 'archival/libunarchive/decompress_unlzma.c')
-rw-r--r-- | archival/libunarchive/decompress_unlzma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/decompress_unlzma.c b/archival/libunarchive/decompress_unlzma.c index 15a0275..907e44e 100644 --- a/archival/libunarchive/decompress_unlzma.c +++ b/archival/libunarchive/decompress_unlzma.c @@ -228,7 +228,7 @@ enum { USE_DESKTOP(long long) int -unlzma(int src_fd, int dst_fd) +unpack_lzma_stream(int src_fd, int dst_fd) { USE_DESKTOP(long long total_written = 0;) lzma_header_t header; |