X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fsparse.c;h=93aee99ed63ae49a3301aa2b4ea17fdff512a6cb;hb=99527fa17bacf65ee2bd009f520a8b9a4bd38075;hp=8d1ff9071ae5a96463b01321325a0b779b547060;hpb=868ee7402884604c679ee13f6fe9772e05ba3ddd;p=chaz%2Ftar diff --git a/src/sparse.c b/src/sparse.c index 8d1ff90..93aee99 100644 --- a/src/sparse.c +++ b/src/sparse.c @@ -1,6 +1,6 @@ /* Functions for dealing with sparse files - Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -466,7 +466,7 @@ sparse_skip_file (struct tar_stat_info *st) file.fd = -1; rc = tar_sparse_decode_header (&file); - skip_file (file.stat_info->archive_file_size); + skip_file (file.stat_info->archive_file_size - file.dumped_size); return (tar_sparse_done (&file) && rc) ? dump_status_ok : dump_status_short; } @@ -1014,6 +1014,7 @@ pax_dump_header_1 (struct tar_sparse_file *file) } size = (size + BLOCKSIZE - 1) / BLOCKSIZE; file->stat_info->archive_file_size += size * BLOCKSIZE; + file->dumped_size += size * BLOCKSIZE; /* Store sparse file identification */ xheader_store ("GNU.sparse.major", file->stat_info, NULL); @@ -1104,7 +1105,8 @@ pax_decode_header (struct tar_sparse_file *file) if (src == endp) \ { \ set_next_block_after (b); \ - b = find_next_block (); \ + file->dumped_size += BLOCKSIZE; \ + b = find_next_block (); \ src = b->buffer; \ endp = b->buffer + BLOCKSIZE; \ } \ @@ -1115,6 +1117,7 @@ pax_decode_header (struct tar_sparse_file *file) } while (0) set_next_block_after (current_header); + file->dumped_size += BLOCKSIZE; blk = find_next_block (); p = blk->buffer; COPY_BUF (blk,nbuf,p);