diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:42 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:42 +0000 |
commit | 459681d3b8093c20a39400c00bcee43d26e964c6 (patch) | |
tree | f7266e70c8ec70da188689e7838880801e06d3b1 /apt-pkg/acquire.cc | |
parent | 63d3141a1f9875ad970ad7850e56a9bf97256895 (diff) |
More CD fixes
Author: jgg
Date: 2000-01-17 07:11:49 GMT
More CD fixes
Diffstat (limited to 'apt-pkg/acquire.cc')
-rw-r--r-- | apt-pkg/acquire.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index a9a8b3396..da3160cae 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.44 1999/12/09 05:22:33 jgg Exp $ +// $Id: acquire.cc,v 1.45 2000/01/17 07:11:49 jgg Exp $ /* ###################################################################### Acquire - File Acquiration @@ -65,14 +65,14 @@ pkgAcquire::pkgAcquire(pkgAcquireStatus *Log) : Log(Log) /* Free our memory, clean up the queues (destroy the workers) */ pkgAcquire::~pkgAcquire() { + Shutdown(); + while (Configs != 0) { MethodConfig *Jnk = Configs; Configs = Configs->Next; delete Jnk; } - - Shutdown(); } /*}}}*/ // Acquire::Shutdown - Clean out the acquire object /*{{{*/ @@ -493,6 +493,7 @@ pkgAcquire::MethodConfig::MethodConfig() Pipeline = false; SendConfig = false; LocalOnly = false; + Removable = false; Next = 0; } /*}}}*/ |