summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmdline/apt-get.cc4
-rw-r--r--debian/changelog1
2 files changed, 3 insertions, 2 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index 9906ad710..99cc35be6 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.144 2003/10/29 17:56:31 mdz Exp $
+// $Id: apt-get.cc,v 1.145 2003/11/10 07:09:53 mdz Exp $
/* ######################################################################
apt-get - Cover for dpkg
@@ -1588,7 +1588,7 @@ bool DoInstall(CommandLine &CmdL)
if (int(RecommendsList.find(target)) > -1)
break;
RecommendsList += target;
- SuggestsVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
+ RecommendsVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
}
if (Start == End)
break;
diff --git a/debian/changelog b/debian/changelog
index 25d99de57..bfe9f6ebb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,7 @@ apt (0.5.15) unstable; urgency=low
<sylvain.pasche@switzerland.org> (Closes: #217152)
* Let apt-get build-dep try alternatives if the installed package
doesn't meet version requirements (Closes: #214736)
+ * Fix version display for recommends (Closes: #219900)
--