diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:53 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:53 +0000 |
commit | 8e5fc8f5bea54e3c016a14fe4025dcb94864e874 (patch) | |
tree | 19a21ecb2b8ee6f53e7cd287d7c11c4514105eb7 /cmdline | |
parent | 08cfc005c3529d4ff63d229b05d75c6ceb88225b (diff) |
CDROMs are unmounted
Author: jgg
Date: 1999-10-18 00:37:35 GMT
CDROMs are unmounted
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index aeb01485f..06422ada5 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.79 1999/10/17 07:49:41 jgg Exp $ +// $Id: apt-get.cc,v 1.80 1999/10/18 00:37:35 jgg Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -660,7 +660,7 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,bool Saftey = while (1) { if (_config->FindB("APT::Get::No-Download",false) == false) - if( Fetcher.Run() == pkgAcquire::Failed) + if (Fetcher.Run() == pkgAcquire::Failed) return false; // Print out errors @@ -672,8 +672,6 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,bool Saftey = (*I)->Complete == true) continue; - (*I)->Finished(); - if ((*I)->Status == pkgAcquire::Item::StatIdle) { Transient = true; |