projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6bf7a0
)
#ifdef, not just #if... grrr
author
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 8 Nov 2002 08:07:38 +0000
(08:07 -0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Fri, 8 Nov 2002 08:07:38 +0000
(08:07 -0000)
archival/libunarchive/seek_by_jump.c
patch
|
blob
|
history
diff --git
a/archival/libunarchive/seek_by_jump.c
b/archival/libunarchive/seek_by_jump.c
index efad97fc45b08341629b255909092a97b9669091..2823976169facb98c13e6073a8a1a9cacd8cb0cd 100644
(file)
--- a/
archival/libunarchive/seek_by_jump.c
+++ b/
archival/libunarchive/seek_by_jump.c
@@
-25,7
+25,7
@@
extern void seek_by_jump(const archive_handle_t *archive_handle, const unsigned int amount)
{
if (lseek(archive_handle->src_fd, (off_t) amount, SEEK_CUR) == (off_t) -1) {
-#if CONFIG_FEATURE_UNARCHIVE_TAPE
+#if
def
CONFIG_FEATURE_UNARCHIVE_TAPE
if (errno == ESPIPE) {
seek_by_char(archive_handle, amount);
} else