diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-05-08 09:18:39 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-05-08 09:18:39 +0200 |
commit | caa8a9f1e777f351b911dc8c30a858a5f026fca3 (patch) | |
tree | a9cb3ce115a832245cd528237cb238c38bca86bc /apt-pkg/contrib/hashes.cc | |
parent | ff94be47f5dbdcf99cea23fad8c9b992a8e5a67e (diff) | |
parent | b41713efc8f37d62f078bea850ef0a74e0af0103 (diff) |
Merge remote-tracking branch 'upstream/debian/sid' into bugfix/update-progress-reporting
Diffstat (limited to 'apt-pkg/contrib/hashes.cc')
-rw-r--r-- | apt-pkg/contrib/hashes.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/hashes.cc b/apt-pkg/contrib/hashes.cc index 1fce0d75f..15f83615d 100644 --- a/apt-pkg/contrib/hashes.cc +++ b/apt-pkg/contrib/hashes.cc @@ -133,7 +133,7 @@ bool Hashes::AddFD(int const Fd,unsigned long long Size, bool const addMD5, bool const addSHA1, bool const addSHA256, bool const addSHA512) { unsigned char Buf[64*64]; - bool const ToEOF = (Size == 0); + bool const ToEOF = (Size == UntilEOF); while (Size != 0 || ToEOF) { unsigned long long n = sizeof(Buf); |