diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:20 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:20 +0000 |
commit | bfd22fc0ac2632c6196f5149dc3b3671d9ff15e0 (patch) | |
tree | 2affe097f22065e344d2fc8921049ea7e3185d9b /apt-pkg/acquire-method.cc | |
parent | 46976ca4e7393625fb25728d876e0c15b7e55c15 (diff) |
Working acquire code
Author: jgg
Date: 1998-11-05 07:21:35 GMT
Working acquire code
Diffstat (limited to 'apt-pkg/acquire-method.cc')
-rw-r--r-- | apt-pkg/acquire-method.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apt-pkg/acquire-method.cc b/apt-pkg/acquire-method.cc index 8d26537fa..681015910 100644 --- a/apt-pkg/acquire-method.cc +++ b/apt-pkg/acquire-method.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-method.cc,v 1.3 1998/11/01 08:07:11 jgg Exp $ +// $Id: acquire-method.cc,v 1.4 1998/11/05 07:21:38 jgg Exp $ /* ###################################################################### Acquire Method @@ -263,10 +263,11 @@ int pkgAcqMethod::Run(bool Single) FetchItem **I = &Queue; for (; *I != 0; I = &(*I)->Next); *I = Tmp; - cout << "GOT " << Tmp->Uri << endl; - + + // Notify that this item is to be fetched. if (Fetch(Tmp) == false) Fail(); + break; } } |