summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:27 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:27 +0000
commit0817301e47d0b1d3ab893039115fa906963af2c9 (patch)
tree65acaae47d4930b5f4277b6ac773ede82091c369 /apt-pkg/acquire.cc
parent1886ebc31b10e7a3b4a78d9497bdcffdc2ad6735 (diff)
Removed download size estimator
Author: jgg Date: 1999-04-07 06:02:56 GMT Removed download size estimator
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r--apt-pkg/acquire.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index 2e8a05e2c..07e4fab59 100644
--- a/apt-pkg/acquire.cc
+++ b/apt-pkg/acquire.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: acquire.cc,v 1.31 1999/03/27 03:02:38 jgg Exp $
+// $Id: acquire.cc,v 1.32 1999/04/07 06:02:56 jgg Exp $
/* ######################################################################
Acquire - File Acquiration
@@ -710,8 +710,6 @@ void pkgAcquireStatus::Pulse(pkgAcquire *Owner)
TotalBytes = 1;
if (Unknown == Count)
TotalBytes = Unknown;
- else
- TotalBytes += TotalBytes/(Count - Unknown)*Unknown;
// Compute the CPS
struct timeval NewTime;