From 25bca9566d66f13e17220135d45bb0fa94d4ed9d Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 19 Oct 2002 02:18:51 +0000 Subject: Remove entries from the accept list as they are matched so we can determine if any files that were specified in the list wernt found. --- archival/libunarchive/filter_accept_list.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'archival/libunarchive') diff --git a/archival/libunarchive/filter_accept_list.c b/archival/libunarchive/filter_accept_list.c index 06b1dd3dd..9f92e6440 100644 --- a/archival/libunarchive/filter_accept_list.c +++ b/archival/libunarchive/filter_accept_list.c @@ -6,10 +6,18 @@ */ extern char filter_accept_list(const llist_t *accept_list, const llist_t *reject_list, const char *key) { + llist_t *accept_old; + while (accept_list) { if (fnmatch(accept_list->data, key, 0) == 0) { + /* Remove entry from list */ + accept_old->link = accept_list->link; + free(accept_list->data); + free(accept_list); + accept_list = accept_old; return(EXIT_SUCCESS); } + accept_old = accept_list; accept_list = accept_list->link; } return(EXIT_FAILURE); -- cgit v1.2.3