diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2014-12-07 00:42:49 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2014-12-07 00:42:49 +0100 |
commit | e7800f351ad9eca012fe27a1c9234692a04419e7 (patch) | |
tree | 4b40f6fb63492c8325bb7b58c5812f0258adbb7b /archival/libarchive/decompress_bunzip2.c | |
parent | 476654cdbeb2923fc5d2485701587b42579e1635 (diff) | |
download | busybox-w32-e7800f351ad9eca012fe27a1c9234692a04419e7.tar.gz busybox-w32-e7800f351ad9eca012fe27a1c9234692a04419e7.tar.bz2 busybox-w32-e7800f351ad9eca012fe27a1c9234692a04419e7.zip |
Rename transformer_aux_data_t -> transformer_state_t
No code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/libarchive/decompress_bunzip2.c')
-rw-r--r-- | archival/libarchive/decompress_bunzip2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libarchive/decompress_bunzip2.c b/archival/libarchive/decompress_bunzip2.c index 6396fe40d..36237e221 100644 --- a/archival/libarchive/decompress_bunzip2.c +++ b/archival/libarchive/decompress_bunzip2.c | |||
@@ -731,7 +731,7 @@ void FAST_FUNC dealloc_bunzip(bunzip_data *bd) | |||
731 | 731 | ||
732 | /* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */ | 732 | /* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */ |
733 | IF_DESKTOP(long long) int FAST_FUNC | 733 | IF_DESKTOP(long long) int FAST_FUNC |
734 | unpack_bz2_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) | 734 | unpack_bz2_stream(transformer_state_t *xstate, int src_fd, int dst_fd) |
735 | { | 735 | { |
736 | IF_DESKTOP(long long total_written = 0;) | 736 | IF_DESKTOP(long long total_written = 0;) |
737 | bunzip_data *bd; | 737 | bunzip_data *bd; |
@@ -739,7 +739,7 @@ unpack_bz2_stream(transformer_aux_data_t *aux, int src_fd, int dst_fd) | |||
739 | int i; | 739 | int i; |
740 | unsigned len; | 740 | unsigned len; |
741 | 741 | ||
742 | if (check_signature16(aux, src_fd, BZIP2_MAGIC)) | 742 | if (check_signature16(xstate, src_fd, BZIP2_MAGIC)) |
743 | return -1; | 743 | return -1; |
744 | 744 | ||
745 | outbuf = xmalloc(IOBUF_SIZE); | 745 | outbuf = xmalloc(IOBUF_SIZE); |