aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-01-04 11:06:34 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-01-04 11:06:34 +0000
commitb9a82f8498985af7b23da844d933a7158aafc958 (patch)
tree986c71d3fdcc4c3e627bdcde3f40ddda67361156
parent13d909788c88d86f03dce3793a150f844b35fe6d (diff)
downloadbusybox-w32-b9a82f8498985af7b23da844d933a7158aafc958.tar.gz
busybox-w32-b9a82f8498985af7b23da844d933a7158aafc958.tar.bz2
busybox-w32-b9a82f8498985af7b23da844d933a7158aafc958.zip
Fix usage with libraries, skip symbol table.
git-svn-id: svn://busybox.net/trunk/busybox@8257 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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)
84 } else if (ar.formated.name[1] == ' ') { 84 } else if (ar.formated.name[1] == ' ') {
85 /* This is the index of symbols in the file for compilers */ 85 /* This is the index of symbols in the file for compilers */
86 data_skip(archive_handle); 86 data_skip(archive_handle);
87 archive_handle->offset += typed->size;
87 return (get_header_ar(archive_handle)); /* Return next header */ 88 return (get_header_ar(archive_handle)); /* Return next header */
88 } else { 89 } else {
89 /* The number after the '/' indicates the offset in the ar data section 90 /* 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)
121 122
122 return(EXIT_SUCCESS); 123 return(EXIT_SUCCESS);
123} 124}
124