[BusyBox-cvs] busybox/archival/libunarchive seek_by_char.c,1.3,1.4
Glenn McGrath
bug1 at busybox.net
Sat Feb 21 09:20:58 UTC 2004
Update of /var/cvs/busybox/archival/libunarchive
In directory nail:/tmp/cvs-serv22717/archival/libunarchive
Modified Files:
seek_by_char.c
Log Message:
Sometimes i get carried away with the use of function pointers, im sure
it seemed like a good idea at the time.
Index: seek_by_char.c
===================================================================
RCS file: /var/cvs/busybox/archival/libunarchive/seek_by_char.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- a/seek_by_char.c 21 Nov 2003 22:24:48 -0000 1.3
+++ b/seek_by_char.c 21 Feb 2004 09:20:56 -0000 1.4
@@ -27,6 +27,6 @@
extern void seek_by_char(const archive_handle_t *archive_handle, const unsigned int jump_size)
{
if (jump_size) {
- bb_full_fd_action(archive_handle->src_fd, -1, jump_size, NULL);
+ bb_copyfd_size(archive_handle->src_fd, -1, jump_size);
}
}
More information about the busybox-cvs
mailing list