diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-04 23:47:31 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-11-04 23:47:31 +0000 |
commit | 8e940984231a5baf98b6e2a637477dd701d314a9 (patch) | |
tree | 5864c9961fdbfbcb8ecf09e78077544f9c8d12c3 /archival/libunarchive/get_header_ar.c | |
parent | f92caa7619d3f2dd7159a8bfb846e0f6dd4bab25 (diff) | |
download | busybox-w32-8e940984231a5baf98b6e2a637477dd701d314a9.tar.gz busybox-w32-8e940984231a5baf98b6e2a637477dd701d314a9.tar.bz2 busybox-w32-8e940984231a5baf98b6e2a637477dd701d314a9.zip |
Change filter paramaters, filters can be more powefull now
Diffstat (limited to 'archival/libunarchive/get_header_ar.c')
-rw-r--r-- | archival/libunarchive/get_header_ar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libunarchive/get_header_ar.c b/archival/libunarchive/get_header_ar.c index b7f2cfbcd..1e0e6c12d 100644 --- a/archival/libunarchive/get_header_ar.c +++ b/archival/libunarchive/get_header_ar.c | |||
@@ -104,7 +104,7 @@ extern char get_header_ar(archive_handle_t *archive_handle) | |||
104 | 104 | ||
105 | typed->name[strcspn(typed->name, " /")] = '\0'; | 105 | typed->name[strcspn(typed->name, " /")] = '\0'; |
106 | 106 | ||
107 | if (archive_handle->filter(archive_handle->accept, archive_handle->reject, typed->name) == EXIT_SUCCESS) { | 107 | if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { |
108 | archive_handle->action_header(typed); | 108 | archive_handle->action_header(typed); |
109 | if (archive_handle->sub_archive) { | 109 | if (archive_handle->sub_archive) { |
110 | while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS); | 110 | while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS); |