diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-10-29 10:37:35 -0400 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-10-29 10:37:35 -0400 |
commit | 0e1945c14bee88013ad03c3b58e088c704f7ffa9 (patch) | |
tree | f5fc881fe41d66b4831dc9aad6a61b8a5f48b178 /methods/bzip2.cc | |
parent | 8a91e5e7a018648178dc2bc399187496734a0639 (diff) | |
parent | 71626337ad5fe00a5f9b753829445084e8f5e790 (diff) |
merged from debian
Diffstat (limited to 'methods/bzip2.cc')
-rw-r--r-- | methods/bzip2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/bzip2.cc b/methods/bzip2.cc index c668141a2..ccc3669a2 100644 --- a/methods/bzip2.cc +++ b/methods/bzip2.cc @@ -57,7 +57,7 @@ bool Bzip2Method::Fetch(FetchItem *Itm) FileFd From(Path,FileFd::ReadOnly); // FIXME add an error message saying that empty files can't be valid archives - if(From.Size() == 0) + if(From.FileSize() == 0) return false; int GzOut[2]; |