StatError to avoid a sometimes large batch of error messages
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:06:05 +0000 (17:06 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 17:06:05 +0000 (17:06 +0000)
Author: mdz
Date: 2004-03-17 05:17:11 GMT
StatError to avoid a sometimes large batch of error messages
(Closes: #234685)

apt-pkg/acquire.cc
debian/changelog

index 74bdaf8..7800dc8 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: acquire.cc,v 1.49 2001/05/27 04:28:37 jgg Exp $
+// $Id: acquire.cc,v 1.50 2004/03/17 05:17:11 mdz Exp $
 /* ######################################################################
 
    Acquire - File Acquiration
@@ -87,7 +87,11 @@ pkgAcquire::~pkgAcquire()
 void pkgAcquire::Shutdown()
 {
    while (Items.size() != 0)
+   {
+      if (Items[0]->Status == Item::StatFetching)
+         Items[0]->Status = Item::StatError;
       delete Items[0];
+   }
 
    while (Queues != 0)
    {
index b397742..7d4fd17 100644 (file)
@@ -17,6 +17,9 @@ apt (0.5.24) unstable; urgency=low
   * Regenerate .pot file (Closes: #237892)
   * Updated Polish translation from Marcin Owsiany <porridge@debian.org>
     (Closes: #238333)
+  * In pkgAcquire::Shutdown(), set the status of fetching items to
+    StatError to avoid a sometimes large batch of error messages
+    (Closes: #234685)
 
  --