diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-10-19 06:19:22 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-10-19 06:19:22 +0000 |
commit | ee4f9fb549b7c4daef7029c101961fca985c0037 (patch) | |
tree | 88df433818b25262966b84fa81aecde8b75c8ed1 /include/unarchive.h | |
parent | b973fe81f202bbb7f29f88f6b9108528c1a909a1 (diff) | |
download | busybox-w32-ee4f9fb549b7c4daef7029c101961fca985c0037.tar.gz busybox-w32-ee4f9fb549b7c4daef7029c101961fca985c0037.tar.bz2 busybox-w32-ee4f9fb549b7c4daef7029c101961fca985c0037.zip |
Fix exclude/include problem
git-svn-id: svn://busybox.net/trunk/busybox@5676 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | include/unarchive.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index 023c3e8aa..956c74fb8 100644 --- a/include/unarchive.h +++ b/include/unarchive.h | |||
@@ -36,6 +36,7 @@ typedef struct archive_handle_s { | |||
36 | char (*filter)(const llist_t *, const llist_t *, const char *); | 36 | char (*filter)(const llist_t *, const llist_t *, const char *); |
37 | const llist_t *accept; | 37 | const llist_t *accept; |
38 | const llist_t *reject; | 38 | const llist_t *reject; |
39 | const llist_t *passed; /* List of files that have successfully been worked on */ | ||
39 | 40 | ||
40 | /* Contains the processed header entry */ | 41 | /* Contains the processed header entry */ |
41 | file_header_t *file_header; | 42 | file_header_t *file_header; |
@@ -89,5 +90,5 @@ extern void seek_sub_file(int src_fd, unsigned int amount); | |||
89 | extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to); | 90 | extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to); |
90 | extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item); | 91 | extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item); |
91 | extern int copy_file_chunk_fd(int src_fd, int dst_fd, unsigned long long chunksize); | 92 | extern int copy_file_chunk_fd(int src_fd, int dst_fd, unsigned long long chunksize); |
92 | 93 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename); | |
93 | #endif | 94 | #endif |