diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-28 21:09:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-28 21:09:51 +0200 |
commit | 0a130d510dc5272dc2fc7bc5a116f0694c8bd2a9 (patch) | |
tree | 029e91a6302547df06524ae6d73ecb5b85e35360 /include | |
parent | 7f2149489fe62373a13792d3de6c33c39725c76c (diff) | |
download | busybox-w32-0a130d510dc5272dc2fc7bc5a116f0694c8bd2a9.tar.gz busybox-w32-0a130d510dc5272dc2fc7bc5a116f0694c8bd2a9.tar.bz2 busybox-w32-0a130d510dc5272dc2fc7bc5a116f0694c8bd2a9.zip |
rpm2cpio: handle unseekable input correctly
function old new delta
data_skip 14 20 +6
seek_by_jump 67 72 +5
data_align 81 84 +3
seek_by_read 20 19 -1
skip_header 99 94 -5
rpm2cpio_main 183 177 -6
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/3 up/down: 14/-12) Total: 2 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/unarchive.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index 682e810d5..d8cb2a081 100644 --- a/include/unarchive.h +++ b/include/unarchive.h | |||
@@ -60,8 +60,8 @@ typedef struct archive_handle_t { | |||
60 | /* Count the number of bytes processed */ | 60 | /* Count the number of bytes processed */ |
61 | off_t offset; | 61 | off_t offset; |
62 | 62 | ||
63 | /* Function that skips data: read_by_char or read_by_skip */ | 63 | /* Function that skips data */ |
64 | void FAST_FUNC (*seek)(const struct archive_handle_t *archive_handle, const unsigned amount); | 64 | void FAST_FUNC (*seek)(int fd, off_t amount); |
65 | 65 | ||
66 | /* Temporary storage */ | 66 | /* Temporary storage */ |
67 | char *buffer; | 67 | char *buffer; |
@@ -107,8 +107,8 @@ extern char get_header_tar_gz(archive_handle_t *archive_handle) FAST_FUNC; | |||
107 | extern char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC; | 107 | extern char get_header_tar_bz2(archive_handle_t *archive_handle) FAST_FUNC; |
108 | extern char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC; | 108 | extern char get_header_tar_lzma(archive_handle_t *archive_handle) FAST_FUNC; |
109 | 109 | ||
110 | extern void seek_by_jump(const archive_handle_t *archive_handle, unsigned amount) FAST_FUNC; | 110 | extern void seek_by_jump(int fd, off_t amount) FAST_FUNC; |
111 | extern void seek_by_read(const archive_handle_t *archive_handle, unsigned amount) FAST_FUNC; | 111 | extern void seek_by_read(int fd, off_t amount) FAST_FUNC; |
112 | 112 | ||
113 | extern void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC; | 113 | extern void data_align(archive_handle_t *archive_handle, unsigned boundary) FAST_FUNC; |
114 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC; | 114 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_FUNC; |