aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-01-04 11:06:34 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-01-04 11:06:34 +0000
commit08ca752c68ead7d9911fb89ae1b03c36e11e6529 (patch)
tree986c71d3fdcc4c3e627bdcde3f40ddda67361156 /archival
parent930453bdcf27bdb4f51d3f4060ebd368aad18c56 (diff)
downloadbusybox-08ca752c68ead7d9911fb89ae1b03c36e11e6529.tar.gz
Fix usage with libraries, skip symbol table.
Diffstat (limited to 'archival')
-rw-r--r--archival/libunarchive/get_header_ar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_ar.c b/archival/libunarchive/get_header_ar.c
index 25fc83781..25eafe0bd 100644
--- a/archival/libunarchive/get_header_ar.c
+++ b/archival/libunarchive/get_header_ar.c
@@ -84,6 +84,7 @@ extern char get_header_ar(archive_handle_t *archive_handle)
} else if (ar.formated.name[1] == ' ') {
/* This is the index of symbols in the file for compilers */
data_skip(archive_handle);
+ archive_handle->offset += typed->size;
return (get_header_ar(archive_handle)); /* Return next header */
} else {
/* The number after the '/' indicates the offset in the ar data section
@@ -121,4 +122,3 @@ extern char get_header_ar(archive_handle_t *archive_handle)
return(EXIT_SUCCESS);
}
-