summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:35 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:35 +0000
commita65cbe33db47c5657e4db7f35a5cd4b9614209bc (patch)
tree17428ff2ac51e5f269f2071a80fc299b877bd861 /cmdline
parentbebdca4bf63ae661c60bc1e0f4e03e6bbb7a7cc5 (diff)
Fixed update and message with -qq
Author: jgg Date: 1999-04-18 06:51:09 GMT Fixed update and message with -qq
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 07ba19f18..fb51c74e1 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.52 1999/04/18 06:36:36 jgg Exp $
+// $Id: apt-get.cc,v 1.53 1999/04/18 06:51:09 jgg Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -162,7 +162,7 @@ void ShowBroken(ostream &out,pkgDepCache &Cache)
out << ' ';
First = false;
- cout << ' ' << End.DepType() << ": " << End.TargetPkg().Name();
+ out << ' ' << End.DepType() << ": " << End.TargetPkg().Name();
// Show a quick summary of the version requirements
if (End.TargetVer() != 0)
@@ -680,7 +680,7 @@ bool DoUpdate(CommandLine &)
// Prepare the cache.
CacheFile Cache;
- if (Cache.Open() == false || Cache.CheckDeps() == false)
+ if (Cache.Open() == false)
return false;
return true;