summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:58 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:58 +0000
commit8195ae461bbe065c5d81f0e95b7f834a2549db39 (patch)
treefb3f68eaa3061ad13eae1b6c3b6f4fb4b9a6d561 /cmdline
parent9978c7b013773c56aa942305cc0c92994e7ee879 (diff)
Fixed a minor http bug and a bug in -d
Author: jgg Date: 1999-06-05 07:30:18 GMT Fixed a minor http bug and a bug in -d
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index ddf02a8f3..585026aba 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.62 1999/06/04 02:31:37 jgg Exp $
+// $Id: apt-get.cc,v 1.63 1999/06/05 07:30:18 jgg Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -618,7 +618,7 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,bool Saftey =
if (_config->FindB("APT::Get::Download-Only",false) == true)
{
- if (Failed == false && _config->FindB("APT::Get::Fix-Missing",false) == false)
+ if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
return _error->Error("Some files failed to download");
return true;
}