]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire.cc
Added --no-download
[apt.git] / apt-pkg / acquire.cc
index 724c3cf0513536b0e4191fea8d5456d0c51c9d59..306512436e778086381e10105a6a7dbe77b0ece9 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: acquire.cc,v 1.33 1999/05/23 06:47:43 jgg Exp $
+// $Id: acquire.cc,v 1.34 1999/05/24 03:39:37 jgg Exp $
 /* ######################################################################
 
    Acquire - File Acquiration
@@ -334,6 +334,10 @@ bool pkgAcquire::Run()
    for (Queue *I = Queues; I != 0; I = I->Next)
       I->Shutdown();
 
+   // Shut down the items
+   for (Item **I = Items.begin(); I != Items.end(); I++)
+      (*I)->Finished();
+   
    return !_error->PendingError();
 }
                                                                        /*}}}*/