diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:28 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:28 +0000 |
commit | f0ec51c2bc1cb671bc9f834c1b0921feaf1338a4 (patch) | |
tree | 72967616f254c4857b30addebab8c4d807d0bd18 | |
parent | abc8419e9114fa0cc1f925eab6b9f456bba90804 (diff) |
Fix for display bug. Closes: #92033
Author: jgg
Date: 2001-04-10 04:49:52 GMT
Fix for display bug. Closes: #92033
-rw-r--r-- | cmdline/apt-get.cc | 5 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | debian/changelog | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index c449b3379..6419299fc 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.104 2001/03/13 05:23:42 jgg Exp $ +// $Id: apt-get.cc,v 1.105 2001/04/10 04:49:52 jgg Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -232,6 +232,9 @@ void ShowBroken(ostream &out,CacheFile &Cache,bool Now) { out << ' '; pkgCache::VerIterator Ver = Cache[Targ].InstVerIter(Cache); + if (Now == true) + Ver = Targ.CurrentVer(); + if (Ver.end() == false) { if (Now == true) diff --git a/configure.in b/configure.in index 95ff0176e..f8d2cc1d6 100644 --- a/configure.in +++ b/configure.in @@ -17,7 +17,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) dnl -- SET THIS TO THE RELEASE VERSION -- -AC_DEFINE_UNQUOTED(VERSION,"0.5.1") +AC_DEFINE_UNQUOTED(VERSION,"0.5.4") AC_DEFINE_UNQUOTED(PACKAGE,"apt") dnl Check the archs, we want the target type. diff --git a/debian/changelog b/debian/changelog index 4b780f3b3..472cae153 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ apt (0.5.4) unstable; urgency=low similar situations. Closes: #56708, #59432 * no_proxy and ftp. Closes: #89671 * Philippe Batailler's man page patches. + * Fix for display bug. Closes: #92033 -- Jason Gunthorpe <jgg@debian.org> Thu, 8 Mar 2001 22:48:06 -0700 |