diff options
-rw-r--r-- | AUTHORS | 9 | ||||
-rw-r--r-- | apt-private/private-search.cc | 3 |
2 files changed, 6 insertions, 6 deletions
@@ -6,9 +6,8 @@ Michael Vogt <mvo@debian.org> David Kalnischkies <kalnischkies+debian@gmail.com> - Development, bug fixes -Christian Perrier <bubulle@debian.org> -- Translations hero/coordinator - +Julian Andres Klode +- Development, bug fixes Past Contributors: @@ -16,8 +15,8 @@ Robert Collins <robert.collins@canonical.com> - Change the package index Info methods to allow apt-cache policy to be useful when using several different archives on the same host. -Julian Andres Klode -- Development, bug fixes +Christian Perrier <bubulle@debian.org> +- Translations hero/coordinator Eugene V. Lyubimkin - Development, bug fixes diff --git a/apt-private/private-search.cc b/apt-private/private-search.cc index 4f2bc4913..bae04173d 100644 --- a/apt-private/private-search.cc +++ b/apt-private/private-search.cc @@ -92,7 +92,8 @@ static bool FullTextSearch(CommandLine &CmdL) /*{{{*/ char const * const PkgName = P.Name(); pkgCache::DescIterator Desc = V.TranslatedDescription(); std::string LongDesc = ""; - if (!Desc.end()) { + if (Desc.end() == false) + { pkgRecords::Parser &parser = records.Lookup(Desc.FileList()); LongDesc = parser.LongDesc(); } |