diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-08 17:54:47 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-08 17:54:47 +0000 |
commit | 8923a8c94c288f5dba133a439f35666b5de2aac4 (patch) | |
tree | a512daebc3674c819766664c8ea17d41ef7fef02 /archival/tar.c | |
parent | 87d25a2b8535dc627a02eb539fa3946be2a24647 (diff) | |
download | busybox-w32-8923a8c94c288f5dba133a439f35666b5de2aac4.tar.gz busybox-w32-8923a8c94c288f5dba133a439f35666b5de2aac4.tar.bz2 busybox-w32-8923a8c94c288f5dba133a439f35666b5de2aac4.zip |
correct largefile support, add comments about it.
git-svn-id: svn://busybox.net/trunk/busybox@16343 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c index b2ae3b2af..28bb14776 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -376,7 +376,7 @@ static int writeFileToTarball(const char *fileName, struct stat *statbuf, | |||
376 | 376 | ||
377 | /* If it was a regular file, write out the body */ | 377 | /* If it was a regular file, write out the body */ |
378 | if (inputFileFd >= 0) { | 378 | if (inputFileFd >= 0) { |
379 | ssize_t readSize = 0; | 379 | off_t readSize = 0; |
380 | 380 | ||
381 | /* write the file to the archive */ | 381 | /* write the file to the archive */ |
382 | readSize = bb_copyfd_eof(inputFileFd, tbInfo->tarFd); | 382 | readSize = bb_copyfd_eof(inputFileFd, tbInfo->tarFd); |