2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-01-20 23:58:50 +05:30
|
|
|
/*
|
|
|
|
* Small lzma deflate implementation.
|
|
|
|
* Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
|
|
|
|
*
|
|
|
|
* Licensed under GPL v2, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
2007-06-01 04:12:12 +05:30
|
|
|
#include "libbb.h"
|
2006-01-20 23:58:50 +05:30
|
|
|
#include "unarchive.h"
|
|
|
|
|
2008-06-28 10:34:09 +05:30
|
|
|
char FAST_FUNC get_header_tar_lzma(archive_handle_t *archive_handle)
|
2006-01-20 23:58:50 +05:30
|
|
|
{
|
|
|
|
/* Can't lseek over pipes */
|
2006-10-08 18:19:22 +05:30
|
|
|
archive_handle->seek = seek_by_read;
|
2006-01-20 23:58:50 +05:30
|
|
|
|
2008-07-10 23:13:01 +05:30
|
|
|
open_transformer(archive_handle->src_fd, unpack_lzma_stream, "unlzma");
|
2006-01-20 23:58:50 +05:30
|
|
|
archive_handle->offset = 0;
|
2007-09-09 19:41:11 +05:30
|
|
|
while (get_header_tar(archive_handle) == EXIT_SUCCESS)
|
|
|
|
continue;
|
2006-01-20 23:58:50 +05:30
|
|
|
|
|
|
|
/* Can only do one file at a time */
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|