summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:41 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:41 +0000
commit2d6751b980b765ca62601c3bd8b535999b0f9f51 (patch)
tree93e5c84bee78033a9ddc32f775f7d1af9a851df9 /cmdline
parentbbfc3e8768b1c38ac983706d4069d348fbf87ba2 (diff)
Fixed some more bugs
Author: jgg Date: 1999-05-11 05:45:10 GMT Fixed some more bugs
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-cache.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc
index 9a404e5be..d5d40ef05 100644
--- a/cmdline/apt-cache.cc
+++ b/cmdline/apt-cache.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.34 1999/04/19 02:35:38 jgg Exp $
+// $Id: apt-cache.cc,v 1.35 1999/05/11 05:45:10 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
@@ -176,9 +176,7 @@ bool DumpPackage(CommandLine &CmdL)
}
cout << "Reverse Provides: " << endl;
for (pkgCache::PrvIterator Prv = Pkg.ProvidesList(); Prv.end() != true; Prv++)
- cout << Prv.OwnerPkg().Name() << " " << Prv.OwnerVer().VerStr();
- cout << endl;
-
+ cout << Prv.OwnerPkg().Name() << " " << Prv.OwnerVer().VerStr() << endl;
}
return true;