Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 18:04:33 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-03 18:04:33 +0400
commit314908da9e156e3100275598dde6848da038d65d (patch)
treed12f6ab92f2435ac599eb1f45b7bfeb8d7aafc1f /archival/libunarchive/filter_accept_reject_list.c
parent65113e8d97c62b6aed560ac73961c8a9020c1568 (diff)
tar: revert older fix (non-portable), added new one.
testsuite tar-extracts-all-subdirs now passes.
Diffstat (limited to 'archival/libunarchive/filter_accept_reject_list.c')
-rw-r--r--archival/libunarchive/filter_accept_reject_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/filter_accept_reject_list.c b/archival/libunarchive/filter_accept_reject_list.c
index be56a446f..a3a938c62 100644
--- a/archival/libunarchive/filter_accept_reject_list.c
+++ b/archival/libunarchive/filter_accept_reject_list.c
@@ -14,14 +14,14 @@
char filter_accept_reject_list(archive_handle_t *archive_handle)
{
const char *key = archive_handle->file_header->name;
- const llist_t *reject_entry = find_list_entry(archive_handle->reject, key);
+ const llist_t *reject_entry = find_list_entry2(archive_handle->reject, key);
const llist_t *accept_entry;
/* If the key is in a reject list fail */
if (reject_entry) {
return(EXIT_FAILURE);
}
- accept_entry = find_list_entry(archive_handle->accept, key);
+ accept_entry = find_list_entry2(archive_handle->accept, key);
/* Fail if an accept list was specified and the key wasnt in there */
if ((accept_entry == NULL) && archive_handle->accept) {