summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:51:21 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:51:21 +0000
commitc7c1b0f62edbefb01efce67f64bd44397be36946 (patch)
tree5d3df8b575da338c9045c0523628957ae57cdfe8 /apt-pkg/acquire.cc
parent7deed45913546487c5162c3600a31e614e68a05a (diff)
Small bug fixes
Author: jgg Date: 1998-11-06 02:52:20 GMT Small bug fixes
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r--apt-pkg/acquire.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index 16adf3ae2..ed64c5e5f 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.8 1998/11/05 07:21:40 jgg Exp $
+// $Id: acquire.cc,v 1.9 1998/11/06 02:52:20 jgg Exp $
/* ######################################################################
Acquire - File Acquiration
@@ -472,8 +472,6 @@ bool pkgAcquire::Queue::Cycle()
if (Items == 0 || Workers == 0)
return true;
- cout << "Cylce for " << Name << endl;
-
// Look for a queable item
QItem *I = Items;
for (; I != 0; I = I->Next)
@@ -486,7 +484,6 @@ bool pkgAcquire::Queue::Cycle()
I->Worker = Workers;
I->Owner->Status = pkgAcquire::Item::StatFetching;
- cout << "Item has been queued!" << endl;
return Workers->QueueItem(I);
}
/*}}}*/