summaryrefslogtreecommitdiffstats
path: root/libbb
diff options
context:
space:
mode:
Diffstat (limited to 'libbb')
-rw-r--r--libbb/unarchive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/unarchive.c b/libbb/unarchive.c
index 38528a3..19aabff 100644
--- a/libbb/unarchive.c
+++ b/libbb/unarchive.c
@@ -52,11 +52,11 @@ void seek_sub_file(FILE *src_stream, const int count)
int i;
/* Try to fseek as faster */
archive_offset += count;
- if (fseek(src_stream, count, SEEK_CUR) != 0 && errno == ESPIPE) {
+ // if (fseek(src_stream, count, SEEK_CUR) != 0 && errno == ESPIPE) {
for (i = 0; i < count; i++) {
fgetc(src_stream);
}
- }
+ //}
return;
}
#endif