busybox/archival/libunarchive/seek_by_jump.c

20 lines
474 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
2001-10-25 19:48:08 +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 "libbb.h"
#include "unarchive.h"
2001-10-25 19:48:08 +05:30
void seek_by_jump(const archive_handle_t *archive_handle, unsigned amount)
2001-10-25 19:48:08 +05:30
{
if (lseek(archive_handle->src_fd, (off_t) amount, SEEK_CUR) == (off_t) -1) {
2007-08-13 16:06:25 +05:30
#if ENABLE_FEATURE_UNARCHIVE_TAPE
if (errno == ESPIPE) {
2006-10-08 18:19:22 +05:30
seek_by_read(archive_handle, amount);
} else
#endif
bb_perror_msg_and_die("seek failure");
2001-10-25 19:48:08 +05:30
}
}