diff options
author | Glenn L McGrath | 2002-09-27 06:46:02 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-09-27 06:46:02 +0000 |
commit | 2e41d0cb777e6af086b45555551780e02ad13f46 (patch) | |
tree | a53d807aeb25003e5a8ea22461079a10b5238e4d /include/unarchive.h | |
parent | a47a3eada6ada1168205f6684e5c5a5c23d3558b (diff) | |
download | busybox-2e41d0cb777e6af086b45555551780e02ad13f46.zip busybox-2e41d0cb777e6af086b45555551780e02ad13f46.tar.gz |
Fix compress support and prevent a segfault
Diffstat (limited to 'include/unarchive.h')
-rw-r--r-- | include/unarchive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index e564e95..023c3e8 100644 --- a/include/unarchive.h +++ b/include/unarchive.h @@ -85,7 +85,7 @@ extern char get_header_ar(archive_handle_t *archive_handle); extern char get_header_tar(archive_handle_t *archive_handle); extern char get_header_tar_gz(archive_handle_t *archive_handle); -//extern void seek_sub_file(int src_fd, unsigned int amount); +extern void seek_sub_file(int src_fd, unsigned int amount); extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to); extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item); extern int copy_file_chunk_fd(int src_fd, int dst_fd, unsigned long long chunksize); |