2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-10-25 19:48:08 +05:30
|
|
|
/*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-10-25 19:48:08 +05:30
|
|
|
*/
|
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
#include <sys/types.h>
|
2001-10-25 19:48:08 +05:30
|
|
|
#include <errno.h>
|
2001-10-27 18:44:52 +05:30
|
|
|
#include <unistd.h>
|
2002-09-25 08:17:48 +05:30
|
|
|
#include <stdlib.h>
|
2002-11-03 19:35:15 +05:30
|
|
|
|
2002-09-25 08:17:48 +05:30
|
|
|
#include "libbb.h"
|
2002-11-03 19:35:15 +05:30
|
|
|
#include "unarchive.h"
|
2001-10-25 19:48:08 +05:30
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
void seek_by_jump(const archive_handle_t *archive_handle, const unsigned int amount)
|
2001-10-25 19:48:08 +05:30
|
|
|
{
|
2002-11-03 19:35:15 +05:30
|
|
|
if (lseek(archive_handle->src_fd, (off_t) amount, SEEK_CUR) == (off_t) -1) {
|
2002-11-08 13:37:38 +05:30
|
|
|
#ifdef CONFIG_FEATURE_UNARCHIVE_TAPE
|
2002-11-03 19:35:15 +05:30
|
|
|
if (errno == ESPIPE) {
|
2006-10-08 18:19:22 +05:30
|
|
|
seek_by_read(archive_handle, amount);
|
2002-11-03 19:35:15 +05:30
|
|
|
} else
|
|
|
|
#endif
|
2006-10-20 18:58:22 +05:30
|
|
|
bb_perror_msg_and_die("seek failure");
|
2001-10-25 19:48:08 +05:30
|
|
|
}
|
2002-07-11 16:41:56 +05:30
|
|
|
}
|