2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-05 02:56:57 +00:00
|
|
|
/*
|
2006-07-12 07:56:04 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-11-05 02:56:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
#include "unarchive.h"
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
char FAST_FUNC get_header_tar_bz2(archive_handle_t *archive_handle)
|
2002-11-05 02:56:57 +00:00
|
|
|
{
|
2006-10-20 13:28:22 +00:00
|
|
|
/* Can't lseek over pipes */
|
2006-10-08 12:49:22 +00:00
|
|
|
archive_handle->seek = seek_by_read;
|
2002-11-13 00:24:20 +00:00
|
|
|
|
2007-11-12 02:13:12 +00:00
|
|
|
archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_bz2_stream, "bunzip2");
|
2002-11-05 02:56:57 +00:00
|
|
|
archive_handle->offset = 0;
|
2007-09-09 14:11:11 +00:00
|
|
|
while (get_header_tar(archive_handle) == EXIT_SUCCESS)
|
|
|
|
continue;
|
2002-11-05 02:56:57 +00:00
|
|
|
|
2003-11-05 04:55:58 +00:00
|
|
|
/* Can only do one file at a time */
|
2006-10-08 12:49:22 +00:00
|
|
|
return EXIT_FAILURE;
|
2002-11-05 02:56:57 +00:00
|
|
|
}
|