[BusyBox-cvs] busybox/archival/libunarchive Makefile.in,1.10,1.11 get_header_tar.c,1.14,1.15 add_to_list.c,1.1,NONE
Glenn McGrath
bug1 at busybox.net
Sun Dec 8 00:54:35 UTC 2002
Update of /var/cvs/busybox/archival/libunarchive
In directory winder:/tmp/cvs-serv20423/archival/libunarchive
Modified Files:
Makefile.in get_header_tar.c
Removed Files:
add_to_list.c
Log Message:
Move add_to_list from libunarchive to libbb so it can be of more general use (eg ifupdown). Changed the name to llist_add_to as i plan on adding more llist_ functions as needed (e.g. llist_free).
Index: Makefile.in
===================================================================
RCS file: /var/cvs/busybox/archival/libunarchive/Makefile.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- Makefile.in 5 Nov 2002 02:56:53 -0000 1.10
+++ Makefile.in 8 Dec 2002 00:54:31 -0000 1.11
@@ -53,7 +53,6 @@
\
archive_copy_file.o \
\
- add_to_list.o \
check_header_gzip.o \
check_trailer_gzip.o \
data_align.o \
Index: get_header_tar.c
===================================================================
RCS file: /var/cvs/busybox/archival/libunarchive/get_header_tar.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- get_header_tar.c 23 Nov 2002 10:44:47 -0000 1.14
+++ get_header_tar.c 8 Dec 2002 00:54:31 -0000 1.15
@@ -171,7 +171,7 @@
archive_handle->action_header(archive_handle->file_header);
archive_handle->flags |= ARCHIVE_EXTRACT_QUIET;
archive_handle->action_data(archive_handle);
- archive_handle->passed = add_to_list(archive_handle->passed, archive_handle->file_header->name);
+ archive_handle->passed = llist_add_to(archive_handle->passed, archive_handle->file_header->name);
} else {
data_skip(archive_handle);
}
--- add_to_list.c DELETED ---
More information about the busybox-cvs
mailing list