diff options
author | Glenn L McGrath | 2002-11-04 23:47:31 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-04 23:47:31 +0000 |
commit | 8e940984231a5baf98b6e2a637477dd701d314a9 (patch) | |
tree | 5864c9961fdbfbcb8ecf09e78077544f9c8d12c3 /archival/libunarchive/get_header_ar.c | |
parent | f92caa7619d3f2dd7159a8bfb846e0f6dd4bab25 (diff) | |
download | busybox-8e940984231a5baf98b6e2a637477dd701d314a9.zip busybox-8e940984231a5baf98b6e2a637477dd701d314a9.tar.gz |
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 b7f2cfb..1e0e6c1 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) typed->name[strcspn(typed->name, " /")] = '\0'; - if (archive_handle->filter(archive_handle->accept, archive_handle->reject, typed->name) == EXIT_SUCCESS) { + if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { archive_handle->action_header(typed); if (archive_handle->sub_archive) { while (archive_handle->action_data_subarchive(archive_handle->sub_archive) == EXIT_SUCCESS); |